Bugfix: sequencer gamma cross didn't work correct on float buffers.

This commit is contained in:
Brecht Van Lommel
2008-03-17 13:43:03 +00:00
parent 2e95780d3d
commit cfeeda4dc7

View File

@@ -1015,7 +1015,7 @@ static void do_gammacross_effect_float(float facf0, float facf1,
x= xo * 4;
while(x--) {
col= gammaCorrect(
*rt= gammaCorrect(
fac1*invGammaCorrect(*rt1)
+ fac2*invGammaCorrect(*rt2));