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>2017-12-18 18:40:18 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2017-12-18 18:40:18 +0300
commit9e424faec67a3f9c0df53849e27104e129894df1 (patch)
tree7499cfa18a3cf9b62f4f56d94c22c3b4f5a5f723 /source/blender/makesdna
parent342226a67063ca5563c70ab45fe158af5bbc8317 (diff)
Add dedicated named constant for no ID recalc flag
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_ID.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_ID.h b/source/blender/makesdna/DNA_ID.h
index c1c4d6c5376..81c0b6f656b 100644
--- a/source/blender/makesdna/DNA_ID.h
+++ b/source/blender/makesdna/DNA_ID.h
@@ -358,6 +358,7 @@ enum {
enum {
/* RESET_AFTER_USE, used by update code (depsgraph). */
+ ID_RECALC_NONE = 0,
ID_RECALC = 1 << 0,
ID_RECALC_DATA = 1 << 1,
ID_RECALC_SKIP_ANIM_TAG = 1 << 2,