[Bf-blender-cvs] [6040e2e] depsgraph_refactor: Depsgraph: Fix compilation error with legacy depsgraph enabled

Sergey Sharybin noreply at git.blender.org
Wed Dec 31 20:08:39 CET 2014


Commit: 6040e2e995efdf77d56a7687853c4bd91a485b02
Author: Sergey Sharybin
Date:   Thu Jan 1 00:08:11 2015 +0500
Branches: depsgraph_refactor
https://developer.blender.org/rB6040e2e995efdf77d56a7687853c4bd91a485b02

Depsgraph: Fix compilation error with legacy depsgraph enabled

===================================================================

M	source/blender/blenkernel/intern/scene.c

===================================================================

diff --git a/source/blender/blenkernel/intern/scene.c b/source/blender/blenkernel/intern/scene.c
index 7c7208b..462910a 100644
--- a/source/blender/blenkernel/intern/scene.c
+++ b/source/blender/blenkernel/intern/scene.c
@@ -1863,7 +1863,7 @@ void BKE_scene_update_for_newframe_ex(EvaluationContext *eval_ctx, Main *bmain,
 	/* BKE_object_handle_update() on all objects, groups and sets */
 #ifdef WITH_LEGACY_DEPSGRAPH
 	if (use_new_eval) {
-		DEG_evaluate_on_framechange(eval_ctx, sce->depsgraph, ctime);
+		DEG_evaluate_on_framechange(eval_ctx, sce->depsgraph, ctime, lay);
 	}
 	else {
 		scene_update_tagged_recursive(eval_ctx, bmain, sce, sce);




More information about the Bf-blender-cvs mailing list