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 17:44:09 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2018-04-23 17:44:09 +0300
commitfc9624e485e17fa43e21931b1e5f2b5ec5211ab2 (patch)
tree0d6604d8fe204d244e792b27c30fa46986216f0a /source/blender/depsgraph/intern/depsgraph.h
parentc8e1f18c5d6342bca3cb78ad349dc2c1b16d3104 (diff)
parent53d69e6d048f918b2c9ee61d3e9f27db64fdfa52 (diff)
Merge branch 'master' into blender2.8
Diffstat (limited to 'source/blender/depsgraph/intern/depsgraph.h')
-rw-r--r--source/blender/depsgraph/intern/depsgraph.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/depsgraph/intern/depsgraph.h b/source/blender/depsgraph/intern/depsgraph.h
index 62059600b72..e10f7d5b115 100644
--- a/source/blender/depsgraph/intern/depsgraph.h
+++ b/source/blender/depsgraph/intern/depsgraph.h
@@ -68,6 +68,8 @@ typedef enum eDepsRelation_Flag {
* which triggers a cyclic relationship to exist in the graph.
*/
DEPSREL_FLAG_CYCLIC = (1 << 0),
+ /* Update flush will not go through this relation. */
+ DEPSREL_FLAG_NO_FLUSH = (1 << 1),
} eDepsRelation_Flag;
/* B depends on A (A -> B) */