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:
authorSergey Sharybin <sergey.vfx@gmail.com>2018-04-23 15:34:56 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2018-04-23 15:34:56 +0300
commit41cf2d9042bfe96d8515ffd2f27a3e671464bc21 (patch)
treea4ca3a9a9efabada465f7ccdd7b9035072e1034e /source/blender/depsgraph
parentb14979f91f81074dd7bba13cfc6610fecffe66b4 (diff)
Depsgraph: Cleanup, remove unused relation tag
Diffstat (limited to 'source/blender/depsgraph')
-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 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) */