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
Notes: blender-bot 2023-02-14 06:23:08 +01:00
Referenced by issue #100749, Blender LTS: Maintenance Task 3.3
Referenced by issue #103888, Regression: Stereoscopic renders in 3.3.1 remove contrast and raise exposure upon saving file
1 changed files with 2 additions and 0 deletions

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;