[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [59763] trunk/blender/source/blender/ editors/space_sequencer/sequencer_view.c: Color managed color didn' t work properly for float sequencer frames.

Sergey Sharybin sergey.vfx at gmail.com
Tue Sep 3 11:18:05 CEST 2013


Revision: 59763
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=59763
Author:   nazgul
Date:     2013-09-03 09:18:04 +0000 (Tue, 03 Sep 2013)
Log Message:
-----------
Color managed color didn't work properly for float sequencer frames.

Like, it seems it never worked actually.

Modified Paths:
--------------
    trunk/blender/source/blender/editors/space_sequencer/sequencer_view.c

Modified: trunk/blender/source/blender/editors/space_sequencer/sequencer_view.c
===================================================================
--- trunk/blender/source/blender/editors/space_sequencer/sequencer_view.c	2013-09-03 09:11:07 UTC (rev 59762)
+++ trunk/blender/source/blender/editors/space_sequencer/sequencer_view.c	2013-09-03 09:18:04 UTC (rev 59763)
@@ -152,7 +152,8 @@
 			info->colfp = info->colf;
 
 			/* sequencer's image buffers are in non-linear space, need to make them linear */
-			BKE_sequencer_pixel_from_sequencer_space_v4(scene, info->colf);
+			copy_v4_v4(info->linearcol, info->colf);
+			BKE_sequencer_pixel_from_sequencer_space_v4(scene, info->linearcol);
 
 			info->color_manage = TRUE;
 		}




More information about the Bf-blender-cvs mailing list