Color Management: convert strips to float if Make Float is enabled but no other filters used

Makes it possible to have color corrections in preview for strips which are originally bytes.
This commit is contained in:
Sergey Sharybin
2012-08-14 11:12:31 +00:00
parent f1537c64a5
commit 555b6afe20

View File

@@ -1678,7 +1678,7 @@ int BKE_sequencer_input_have_to_preprocess(SeqRenderData UNUSED(context), Sequen
float mul;
if (seq->flag & (SEQ_FILTERY | SEQ_USE_CROP | SEQ_USE_TRANSFORM | SEQ_FLIPX |
SEQ_FLIPY | SEQ_USE_COLOR_BALANCE | SEQ_MAKE_PREMUL))
SEQ_FLIPY | SEQ_USE_COLOR_BALANCE | SEQ_MAKE_PREMUL | SEQ_MAKE_FLOAT))
{
return TRUE;
}