[Bf-blender-cvs] [1fd2e62] master: Fix compilation error with legacy depsgraph disabled

Sergey Sharybin noreply at git.blender.org
Wed May 27 10:11:03 CEST 2015


Commit: 1fd2e6232a4146aebf4c5c18468343f63960356c
Author: Sergey Sharybin
Date:   Wed May 27 13:09:57 2015 +0500
Branches: master
https://developer.blender.org/rB1fd2e6232a4146aebf4c5c18468343f63960356c

Fix compilation error with legacy depsgraph disabled

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

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

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

diff --git a/source/blender/blenkernel/intern/scene.c b/source/blender/blenkernel/intern/scene.c
index 31ae672..7124715 100644
--- a/source/blender/blenkernel/intern/scene.c
+++ b/source/blender/blenkernel/intern/scene.c
@@ -1735,7 +1735,7 @@ void BKE_scene_update_tagged(EvaluationContext *eval_ctx, Main *bmain, Scene *sc
 		scene_update_tagged_recursive(eval_ctx, bmain, scene, scene);
 	}
 #else
-	DEG_evaluate_on_refresh(eval_ctx, bmain, scene->depsgraph, scene);
+	DEG_evaluate_on_refresh(eval_ctx, scene->depsgraph, scene);
 #endif
 
 	/* update sound system animation (TODO, move to depsgraph) */




More information about the Bf-blender-cvs mailing list