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:
authorCampbell Barton <campbell@blender.org>2022-07-26 06:09:22 +0300
committerCampbell Barton <campbell@blender.org>2022-07-26 06:21:21 +0300
commitf1f89ca751d2782fee5d1cb982881409d478c6eb (patch)
treec678c4103476c527dae4d8a2e5083c68cf4f96d4 /source/blender/depsgraph/intern/eval/deg_eval.cc
parent3ae85a0d8fc5abebf118c89ec4edff26ea012c52 (diff)
Cleanup: spelling in comments
Diffstat (limited to 'source/blender/depsgraph/intern/eval/deg_eval.cc')
-rw-r--r--source/blender/depsgraph/intern/eval/deg_eval.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/depsgraph/intern/eval/deg_eval.cc b/source/blender/depsgraph/intern/eval/deg_eval.cc
index 426e04a5cf9..89e1f1add18 100644
--- a/source/blender/depsgraph/intern/eval/deg_eval.cc
+++ b/source/blender/depsgraph/intern/eval/deg_eval.cc
@@ -70,7 +70,7 @@ enum class EvaluationStage {
* involved. */
COPY_ON_WRITE,
- /* Evaluate actual ID nodes visiblity based on the current state of animation and drivers. */
+ /* Evaluate actual ID nodes visibility based on the current state of animation and drivers. */
DYNAMIC_VISIBILITY,
/* Threaded evaluation of all possible operations. */
@@ -136,7 +136,7 @@ bool check_operation_node_visible(const DepsgraphEvalState *state, OperationNode
return true;
}
- /* Special case for dynamic visiblity pass: the actual visibility is not yet known, so limit to
+ /* Special case for dynamic visibility pass: the actual visibility is not yet known, so limit to
* only operations which affects visibility. */
if (state->stage == EvaluationStage::DYNAMIC_VISIBILITY) {
return op_node->flag & OperationFlag::DEPSOP_FLAG_AFFECTS_VISIBILITY;