Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2008-03-17 16:43:03 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2008-03-17 16:43:03 +0300
commitcfeeda4dc796b94c5562c7dc993f3bb88d42cbb4 (patch)
treecc85490d6932c05b4474adaace0d537d97043e2c
parent2e95780d3ddfecef2ae225e6cb30a296ff54c522 (diff)
Bugfix: sequencer gamma cross didn't work correct on float buffers.
-rw-r--r--source/blender/src/seqeffects.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/seqeffects.c b/source/blender/src/seqeffects.c
index 95cae4c888d..ae5b8342535 100644
--- a/source/blender/src/seqeffects.c
+++ b/source/blender/src/seqeffects.c
@@ -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));