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>2021-11-29 14:12:22 +0300
committerSergey Sharybin <sergey@blender.org>2022-01-03 17:30:14 +0300
commita230445caec6cae4eda9dbf8ea758322310fc7eb (patch)
tree9d806bbd391aa6044296dec46bc4c71660ef92fd /source/blender/depsgraph/intern/node
parenta3e634d4d7a3f2ae12d9a6e1709e790dfa6f27c5 (diff)
Depsgraph: Remove object-level visibility from geometry builders
Continuation of the D13404 which finished the design of not having geometry-level nodes dependent on object-level. Differential Revision: https://developer.blender.org/D13405
Diffstat (limited to 'source/blender/depsgraph/intern/node')
-rw-r--r--source/blender/depsgraph/intern/node/deg_node.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/depsgraph/intern/node/deg_node.h b/source/blender/depsgraph/intern/node/deg_node.h
index ef58a35afb2..6cb5e31303f 100644
--- a/source/blender/depsgraph/intern/node/deg_node.h
+++ b/source/blender/depsgraph/intern/node/deg_node.h
@@ -112,11 +112,11 @@ enum class NodeType {
* which simplifies common algorithms which are dealing with relations and visibility.
*
* The fact that the visibility operates on the ID level basically means that all components in
- * NodeA will be considered as affecting directly visible when NodeB's visibility is
+ * the NodeA will be considered as affecting directly visible when NodeB's visibility is
* affecting directly visible ID.
*
* This is the way to ensure objects needed for visualization without any actual data dependency
- * are properly evaluated. Example of this is custom shapes for bones. */
+ * properly evaluated. Example of this is custom shapes for bones. */
VISIBILITY,
/* **** Evaluation-Related Outer Types (with Subdata) **** */