From dcfb858a7629cb505318ce755075a9c77e6aa376 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Mon, 11 Nov 2013 12:08:31 +0000 Subject: Fix #37395: Rendering with a movie strip behind a scene shows inconsistent results For now just make sure conversion to sequencer space will ensure imbuf's color space names is set properly. Might be some further changes needed to make colorspace flow more clear in sequencer, but that's for later. --- source/blender/blenkernel/intern/sequencer.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source') diff --git a/source/blender/blenkernel/intern/sequencer.c b/source/blender/blenkernel/intern/sequencer.c index 1235018546e..49b237fc3ea 100644 --- a/source/blender/blenkernel/intern/sequencer.c +++ b/source/blender/blenkernel/intern/sequencer.c @@ -463,6 +463,7 @@ void BKE_sequencer_imbuf_to_sequencer_space(Scene *scene, ImBuf *ibuf, int make_ if (!STREQ(float_colorspace, to_colorspace)) { IMB_colormanagement_transform_threaded(ibuf->rect_float, ibuf->x, ibuf->y, ibuf->channels, from_colorspace, to_colorspace, true); + sequencer_imbuf_assign_spaces(scene, ibuf); } } } -- cgit v1.2.3