Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2014-01-24 12:29:50 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2014-01-24 12:29:50 +0400
commit456dc16e4a191c4cf101e62a22bf91046ed07e06 (patch)
tree4c96dd1b04924b2a040b74131fdadd6c7cbcc127 /source/blender/blenkernel/intern/sequencer.c
parentf0b9b65740d08a7ed7a2a34611af9275319073ae (diff)
Fix currently harmless issue with converting ImBuf from sequencer space
Diffstat (limited to 'source/blender/blenkernel/intern/sequencer.c')
-rw-r--r--source/blender/blenkernel/intern/sequencer.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenkernel/intern/sequencer.c b/source/blender/blenkernel/intern/sequencer.c
index d02cdae5a7b..4c32e3e7654 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);
}
}