[Bf-blender-cvs] [41cf2d9042b] master: Depsgraph: Cleanup, remove unused relation tag

Sergey Sharybin noreply at git.blender.org
Mon Apr 23 14:35:14 CEST 2018


Commit: 41cf2d9042bfe96d8515ffd2f27a3e671464bc21
Author: Sergey Sharybin
Date:   Mon Apr 23 14:34:56 2018 +0200
Branches: master
https://developer.blender.org/rB41cf2d9042bfe96d8515ffd2f27a3e671464bc21

Depsgraph: Cleanup, remove unused relation tag

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

M	source/blender/depsgraph/intern/depsgraph.h

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

diff --git a/source/blender/depsgraph/intern/depsgraph.h b/source/blender/depsgraph/intern/depsgraph.h
index ce56d67b6de..f742587e19f 100644
--- a/source/blender/depsgraph/intern/depsgraph.h
+++ b/source/blender/depsgraph/intern/depsgraph.h
@@ -59,13 +59,10 @@ struct OperationDepsNode;
 
 /* Settings/Tags on Relationship */
 typedef enum eDepsRelation_Flag {
-	/* "touched" tag is used when filtering, to know which to collect */
-	DEPSREL_FLAG_TEMP_TAG   = (1 << 0),
-
 	/* "cyclic" link - when detecting cycles, this relationship was the one
-	 * which triggers a cyclic relationship to exist in the graph
+	 * which triggers a cyclic relationship to exist in the graph.
 	 */
-	DEPSREL_FLAG_CYCLIC     = (1 << 1),
+	DEPSREL_FLAG_CYCLIC     = (1 << 0),
 } eDepsRelation_Flag;
 
 /* B depends on A (A -> B) */



More information about the Bf-blender-cvs mailing list