Sequencer: fix for incorrect proxies rendering after some recent refactor

This commit is contained in:
Sergey Sharybin
2012-08-22 13:45:20 +00:00
parent 267f625179
commit 0fbd15df0f

View File

@@ -2565,7 +2565,8 @@ static ImBuf *seq_render_strip(SeqRenderData context, Sequence *seq, float cfra)
is_proxy_image = (ibuf != NULL);
}
ibuf = do_render_strip_uncached(context, seq, cfra);
if (ibuf == NULL)
ibuf = do_render_strip_uncached(context, seq, cfra);
if (ibuf)
BKE_sequencer_preprocessed_cache_put(context, seq, cfra, SEQ_STRIPELEM_IBUF, ibuf);