[Bf-blender-cvs] [56ace4b2099] blender2.8: Depsgraph: Log entry operations which are directly modified and tagged

Sergey Sharybin noreply at git.blender.org
Wed Jul 4 16:48:02 CEST 2018


Commit: 56ace4b2099da3e26e864b41fa4594499ba2bbc2
Author: Sergey Sharybin
Date:   Wed Jul 4 16:41:37 2018 +0200
Branches: blender2.8
https://developer.blender.org/rB56ace4b2099da3e26e864b41fa4594499ba2bbc2

Depsgraph: Log entry operations which are directly modified and tagged

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

M	source/blender/depsgraph/intern/eval/deg_eval_flush.cc

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

diff --git a/source/blender/depsgraph/intern/eval/deg_eval_flush.cc b/source/blender/depsgraph/intern/eval/deg_eval_flush.cc
index e9f11f8e089..bd31931d0a9 100644
--- a/source/blender/depsgraph/intern/eval/deg_eval_flush.cc
+++ b/source/blender/depsgraph/intern/eval/deg_eval_flush.cc
@@ -140,6 +140,9 @@ BLI_INLINE void flush_schedule_entrypoints(Depsgraph *graph, FlushQueue *queue)
 	{
 		queue->push_back(op_node);
 		op_node->scheduled = true;
+		DEG_DEBUG_PRINTF((::Depsgraph *)graph,
+		                 EVAL, "Operation is entry point for update: %s\n",
+		                 op_node->identifier().c_str());
 	}
 	GSET_FOREACH_END();
 }



More information about the Bf-blender-cvs mailing list