[Bf-blender-cvs] [4fe7c19] depsgraph_refactor: Depsgraph: Report visibility to graphiz

Sergey Sharybin noreply at git.blender.org
Fri Jan 9 12:57:25 CET 2015


Commit: 4fe7c19fb6f72d319c0bdd5695838dcfebb9af10
Author: Sergey Sharybin
Date:   Fri Jan 9 16:56:36 2015 +0500
Branches: depsgraph_refactor
https://developer.blender.org/rB4fe7c19fb6f72d319c0bdd5695838dcfebb9af10

Depsgraph: Report visibility to graphiz

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

M	source/blender/depsgraph/intern/depsgraph_debug.cpp

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

diff --git a/source/blender/depsgraph/intern/depsgraph_debug.cpp b/source/blender/depsgraph/intern/depsgraph_debug.cpp
index 57a4d1a..8cb6fc2 100644
--- a/source/blender/depsgraph/intern/depsgraph_debug.cpp
+++ b/source/blender/depsgraph/intern/depsgraph_debug.cpp
@@ -372,8 +372,12 @@ static void deg_debug_graphviz_node_single(const DebugContext &ctx,
                                            const DepsNode *node)
 {
 	const char *shape = "box";
-	const string name = node->identifier();
+	string name = node->identifier();
 	float priority = -1.0f;
+	if (node->type == DEPSNODE_TYPE_ID_REF) {
+		IDDepsNode *id_node = (IDDepsNode *)node;
+		name += " (Layers: " + std::to_string(id_node->layers) + ") ";
+	}
 	if (ctx.show_eval_priority && node->tclass == DEPSNODE_CLASS_OPERATION) {
 		priority = ((OperationDepsNode *)node)->eval_priority;
 	}
@@ -403,7 +407,11 @@ static void deg_debug_graphviz_node_single(const DebugContext &ctx,
 static void deg_debug_graphviz_node_cluster_begin(const DebugContext &ctx,
                                                   const DepsNode *node)
 {
-	const string name = node->identifier().c_str();
+	string name = node->identifier().c_str();
+	if (node->type == DEPSNODE_TYPE_ID_REF) {
+		IDDepsNode *id_node = (IDDepsNode *)node;
+		name += " (Layers: " + std::to_string(id_node->layers) + ") ";
+	}
 	deg_debug_fprintf(ctx, "// %s\n", name.c_str());
 	deg_debug_fprintf(ctx, "subgraph \"cluster_%p\" {" NL, node);
 //	deg_debug_fprintf(ctx, "label=<<B>%s</B>>;" NL, name);




More information about the Bf-blender-cvs mailing list