[Bf-blender-cvs] [0bf8bb2] depsgraph_refactor: Depsgraph: Use more unique relation names

Sergey Sharybin noreply at git.blender.org
Mon Mar 16 16:22:06 CET 2015


Commit: 0bf8bb28244fe56a5e5c15e73780028d5d5c02ca
Author: Sergey Sharybin
Date:   Mon Mar 16 20:04:01 2015 +0500
Branches: depsgraph_refactor
https://developer.blender.org/rB0bf8bb28244fe56a5e5c15e73780028d5d5c02ca

Depsgraph: Use more unique relation names

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

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

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

diff --git a/source/blender/depsgraph/intern/depsgraph_build_relations.cpp b/source/blender/depsgraph/intern/depsgraph_build_relations.cpp
index e53b88a..cf648fb 100644
--- a/source/blender/depsgraph/intern/depsgraph_build_relations.cpp
+++ b/source/blender/depsgraph/intern/depsgraph_build_relations.cpp
@@ -1672,7 +1672,7 @@ void DepsgraphRelationBuilder::build_lamp(Object *ob)
 		build_nodetree(lamp_id, la->nodetree);
 		ComponentKey nodetree_key(&la->nodetree->id, DEPSNODE_TYPE_PARAMETERS);
 		add_relation(nodetree_key, parameters_key,
-		             DEPSREL_TYPE_COMPONENT_ORDER, "Lamp Parameters");
+		             DEPSREL_TYPE_COMPONENT_ORDER, "NTree->Lamp Parameters");
 	}
 
 	/* textures */
@@ -1706,7 +1706,7 @@ void DepsgraphRelationBuilder::build_nodetree(ID *owner, bNodeTree *ntree)
 		ComponentKey parameters_key(ntree_id, DEPSNODE_TYPE_PARAMETERS);
 		ComponentKey animation_key(ntree_id, DEPSNODE_TYPE_ANIMATION);
 		add_relation(animation_key, parameters_key,
-		             DEPSREL_TYPE_COMPONENT_ORDER, "Lamp Parameters");
+		             DEPSREL_TYPE_COMPONENT_ORDER, "NTree Parameters");
 	}
 
 	// TODO: link from nodetree to owner_component?




More information about the Bf-blender-cvs mailing list