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.
This commit is contained in:
Sergey Sharybin 2013-11-11 12:08:31 +00:00
parent 647f425265
commit dcfb858a76
1 changed files with 1 additions and 0 deletions

View File

@ -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);
}
}
}