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
path: root/source
diff options
context:
space:
mode:
authorRichard Antalik <richardantalik@gmail.com>2019-07-09 00:53:40 +0300
committerRichard Antalik <richardantalik@gmail.com>2019-07-09 01:16:46 +0300
commita42cae160082afaf5507fa558fbaf5d1d5987f17 (patch)
tree21a7ff7d56ddf6d48aee734e7f22b0e4f50fe0ae /source
parentf04424a15d9c0f461f9c2f385696716d830b07f4 (diff)
Fix T55192: Speed fx applied to scene messed up animation
Don't update animdata after rendering scene Rendering host scene from sequencer is not supported, removed code is unnecessary. Reviewed By: brecht Differential Revision: https://developer.blender.org/D5199
Diffstat (limited to 'source')
-rw-r--r--source/blender/blenkernel/intern/sequencer.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/source/blender/blenkernel/intern/sequencer.c b/source/blender/blenkernel/intern/sequencer.c
index ceb06c29f09..c2d51b72b29 100644
--- a/source/blender/blenkernel/intern/sequencer.c
+++ b/source/blender/blenkernel/intern/sequencer.c
@@ -3740,9 +3740,6 @@ static ImBuf *do_render_strip_uncached(const SeqRenderData *context,
ibuf = seq_render_scene_strip(context, seq, nr, cfra);
}
- /* Scene strips update all animation, so we need to restore original state.*/
- BKE_animsys_evaluate_all_animation(context->bmain, context->depsgraph, context->scene, cfra);
-
break;
}