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@blender.org>2022-07-19 16:23:44 +0300
committerSergey Sharybin <sergey@blender.org>2022-07-19 16:25:49 +0300
commitbc6b612d8b673a6dcfce110466cd8e924103fb1d (patch)
tree78621e3b72688b5d2c88511cde031061c1d330a6 /source/blender/depsgraph/intern/depsgraph.h
parent44f1495b570037f06c698b0fb0a7cb21fdf0ac97 (diff)
Depsgraph: Make variable naming more clear
Disambiguate from nodes visibility flags.
Diffstat (limited to 'source/blender/depsgraph/intern/depsgraph.h')
-rw-r--r--source/blender/depsgraph/intern/depsgraph.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/depsgraph/intern/depsgraph.h b/source/blender/depsgraph/intern/depsgraph.h
index fc92580f5f5..fc24e98acb7 100644
--- a/source/blender/depsgraph/intern/depsgraph.h
+++ b/source/blender/depsgraph/intern/depsgraph.h
@@ -93,8 +93,8 @@ struct Depsgraph {
/* Indicated whether IDs in this graph are to be tagged as if they first appear visible, with
* an optional tag for their animation (time) update. */
- bool need_visibility_update;
- bool need_visibility_time_update;
+ bool need_tag_id_on_graph_visibility_update;
+ bool need_tag_id_on_graph_visibility_time_update;
/* Indicates which ID types were updated. */
char id_type_updated[INDEX_ID_MAX];