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>2017-10-24 16:29:43 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2017-10-24 17:04:11 +0300
commit97b2483a7a78253fcbd4dd5d114a1c7a8668c4ef (patch)
tree54c1122deff3982e669229b241b5f3d361e975de /source/blender/blenkernel
parent11d8c939cd66714b22fa5b1763d88ce2d78241e4 (diff)
Depsgraph: Remove scene from refresh API
Scene is already stored in the graph.
Diffstat (limited to 'source/blender/blenkernel')
-rw-r--r--source/blender/blenkernel/intern/scene.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/scene.c b/source/blender/blenkernel/intern/scene.c
index 4662612cc24..5477ab97201 100644
--- a/source/blender/blenkernel/intern/scene.c
+++ b/source/blender/blenkernel/intern/scene.c
@@ -1623,7 +1623,7 @@ void BKE_scene_update_tagged(EvaluationContext *eval_ctx, Main *bmain, Scene *sc
*
* in the future this should handle updates for all datablocks, not
* only objects and scenes. - brecht */
- DEG_evaluate_on_refresh(eval_ctx, scene->depsgraph_legacy, scene);
+ DEG_evaluate_on_refresh(eval_ctx, scene->depsgraph_legacy);
/* update sound system animation (TODO, move to depsgraph) */
BKE_sound_update_scene(bmain, scene);