Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/depsgraph/intern')
-rw-r--r--source/blender/depsgraph/intern/depsgraph.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/source/blender/depsgraph/intern/depsgraph.h b/source/blender/depsgraph/intern/depsgraph.h
index 9fa6b38166d..62059600b72 100644
--- a/source/blender/depsgraph/intern/depsgraph.h
+++ b/source/blender/depsgraph/intern/depsgraph.h
@@ -64,13 +64,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) */