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:52:33 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2017-12-18 18:52:46 +0300
commit94d34ae205feb798e3d4151c2661e68ef2163f59 (patch)
treee3a5ab825f8e0219192c16588eb7b60eb122f841 /source/blender/depsgraph/DEG_depsgraph.h
parent90021402e2de56ba9100c3c2464165d1a1d358a2 (diff)
Depsgraph: Cleanup, typo in comment
Diffstat (limited to 'source/blender/depsgraph/DEG_depsgraph.h')
-rw-r--r--source/blender/depsgraph/DEG_depsgraph.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/depsgraph/DEG_depsgraph.h b/source/blender/depsgraph/DEG_depsgraph.h
index aaa6142fa21..efa18a98cf9 100644
--- a/source/blender/depsgraph/DEG_depsgraph.h
+++ b/source/blender/depsgraph/DEG_depsgraph.h
@@ -143,7 +143,7 @@ void DEG_on_visible_update(struct Main *bmain, const bool do_time);
enum {
/* Object transformation changed, corresponds to OB_RECALC_OB. */
DEG_TAG_TRANSFORM = (1 << 0),
- /* Object geoemtry changed, corresponds to OB_RECALC_DATA. */
+ /* Object geometry changed, corresponds to OB_RECALC_DATA. */
DEG_TAG_GEOMETRY = (1 << 1),
/* Time changed and animation is to be re-evaluated, OB_RECALC_TIME. */
DEG_TAG_TIME = (1 << 2),