[Bf-blender-cvs] [456dc16] master: Fix currently harmless issue with converting ImBuf from sequencer space

Sergey Sharybin noreply at git.blender.org
Fri Jan 24 09:30:17 CET 2014


Commit: 456dc16e4a191c4cf101e62a22bf91046ed07e06
Author: Sergey Sharybin
Date:   Fri Jan 24 14:29:50 2014 +0600
https://developer.blender.org/rB456dc16e4a191c4cf101e62a22bf91046ed07e06

Fix currently harmless issue with converting ImBuf from sequencer space

===================================================================

M	source/blender/blenkernel/intern/sequencer.c

===================================================================

diff --git a/source/blender/blenkernel/intern/sequencer.c b/source/blender/blenkernel/intern/sequencer.c
index d02cdae..4c32e3e 100644
--- a/source/blender/blenkernel/intern/sequencer.c
+++ b/source/blender/blenkernel/intern/sequencer.c
@@ -480,6 +480,7 @@ void BKE_sequencer_imbuf_from_sequencer_space(Scene *scene, ImBuf *ibuf)
 	if (to_colorspace && to_colorspace[0] != '\0') {
 		IMB_colormanagement_transform_threaded(ibuf->rect_float, ibuf->x, ibuf->y, ibuf->channels,
 		                                       from_colorspace, to_colorspace, true);
+		IMB_colormanagement_assign_float_colorspace(ibuf, to_colorspace);
 	}
 }




More information about the Bf-blender-cvs mailing list