Fix T103888: Regression: Side-by-side stereo renders ignore color management

Looks like rB42937493d8253a295a97092315288f961e8c6dba accidentally dropped the
colorspace copy.
This commit is contained in:
Lukas Stockner
2023-01-23 22:10:40 +01:00
parent 42f8f98ee1
commit f72969f377

View File

@@ -765,9 +765,11 @@ ImBuf *IMB_stereo3d_ImBuf(const ImageFormatData *im_format, ImBuf *ibuf_left, Im
if (is_float) {
imb_addrectfloatImBuf(ibuf_stereo, ibuf_left->channels);
ibuf_stereo->float_colorspace = ibuf_left->float_colorspace;
}
else {
imb_addrectImBuf(ibuf_stereo);
ibuf_stereo->rect_colorspace = ibuf_left->rect_colorspace;
}
ibuf_stereo->flags = ibuf_left->flags;