Merge branch 'blender-v2.91-release'

This commit is contained in:
Richard Antalik 2020-11-17 13:02:30 +01:00
commit 417224a31b
1 changed files with 3 additions and 2 deletions

View File

@ -510,8 +510,6 @@ static PrefetchJob *seq_prefetch_start(const SeqRenderData *context, float cfra)
seq_prefetch_init_depsgraph(pfjob);
}
}
seq_prefetch_update_scene(context->scene);
seq_prefetch_update_context(context);
pfjob->bmain = context->bmain;
pfjob->cfra = cfra;
@ -521,6 +519,9 @@ static PrefetchJob *seq_prefetch_start(const SeqRenderData *context, float cfra)
pfjob->stop = false;
pfjob->running = true;
seq_prefetch_update_scene(context->scene);
seq_prefetch_update_context(context);
BLI_threadpool_remove(&pfjob->threads, pfjob);
BLI_threadpool_insert(&pfjob->threads, pfjob);