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-05-17 08:34:02 +0300
committerCampbell Barton <campbell@blender.org>2022-05-17 08:34:02 +0300
commitc93f3b4596234491562cde4f22b37a34d59875cd (patch)
tree907e1a50631fafee9c3a4075548508b34619563d /source/blender/modifiers/intern
parent1a740c25417f735d6a778e2c6339356d48eed2ea (diff)
Cleanup: spelling in comments
Diffstat (limited to 'source/blender/modifiers/intern')
-rw-r--r--source/blender/modifiers/intern/MOD_correctivesmooth.c4
-rw-r--r--source/blender/modifiers/intern/MOD_laplaciandeform.c4
-rw-r--r--source/blender/modifiers/intern/MOD_meshdeform.c4
-rw-r--r--source/blender/modifiers/intern/MOD_surfacedeform.c4
4 files changed, 8 insertions, 8 deletions
diff --git a/source/blender/modifiers/intern/MOD_correctivesmooth.c b/source/blender/modifiers/intern/MOD_correctivesmooth.c
index 70ab6559b65..8b6c306dae8 100644
--- a/source/blender/modifiers/intern/MOD_correctivesmooth.c
+++ b/source/blender/modifiers/intern/MOD_correctivesmooth.c
@@ -806,8 +806,8 @@ static void blendWrite(BlendWriter *writer, const ID *id_owner, const ModifierDa
BLI_assert(!ID_IS_LINKED(id_owner));
const bool is_local = (md->flag & eModifierFlag_OverrideLibrary_Local) != 0;
if (!is_local) {
- /* Modifier comming from linked data cannot be bound from an override, so we can remove all
- * binding data, can save a sgnificant amout of memory. */
+ /* Modifier coming from linked data cannot be bound from an override, so we can remove all
+ * binding data, can save a significant amount of memory. */
csmd.bind_coords_num = 0;
csmd.bind_coords = NULL;
}
diff --git a/source/blender/modifiers/intern/MOD_laplaciandeform.c b/source/blender/modifiers/intern/MOD_laplaciandeform.c
index e8dc07a257a..06ded1c4488 100644
--- a/source/blender/modifiers/intern/MOD_laplaciandeform.c
+++ b/source/blender/modifiers/intern/MOD_laplaciandeform.c
@@ -851,8 +851,8 @@ static void blendWrite(BlendWriter *writer, const ID *id_owner, const ModifierDa
BLI_assert(!ID_IS_LINKED(id_owner));
const bool is_local = (md->flag & eModifierFlag_OverrideLibrary_Local) != 0;
if (!is_local) {
- /* Modifier comming from linked data cannot be bound from an override, so we can remove all
- * binding data, can save a sgnificant amout of memory. */
+ /* Modifier coming from linked data cannot be bound from an override, so we can remove all
+ * binding data, can save a significant amount of memory. */
lmd.verts_num = 0;
lmd.vertexco = NULL;
}
diff --git a/source/blender/modifiers/intern/MOD_meshdeform.c b/source/blender/modifiers/intern/MOD_meshdeform.c
index c5db0a5f21a..0cff85d30ec 100644
--- a/source/blender/modifiers/intern/MOD_meshdeform.c
+++ b/source/blender/modifiers/intern/MOD_meshdeform.c
@@ -589,8 +589,8 @@ static void blendWrite(BlendWriter *writer, const ID *id_owner, const ModifierDa
BLI_assert(!ID_IS_LINKED(id_owner));
const bool is_local = (md->flag & eModifierFlag_OverrideLibrary_Local) != 0;
if (!is_local) {
- /* Modifier comming from linked data cannot be bound from an override, so we can remove all
- * binding data, can save a sgnificant amout of memory. */
+ /* Modifier coming from linked data cannot be bound from an override, so we can remove all
+ * binding data, can save a significant amount of memory. */
mmd.influences_num = 0;
mmd.bindinfluences = NULL;
mmd.verts_num = 0;
diff --git a/source/blender/modifiers/intern/MOD_surfacedeform.c b/source/blender/modifiers/intern/MOD_surfacedeform.c
index fe49244c4a2..9b0012e3890 100644
--- a/source/blender/modifiers/intern/MOD_surfacedeform.c
+++ b/source/blender/modifiers/intern/MOD_surfacedeform.c
@@ -1677,8 +1677,8 @@ static void blendWrite(BlendWriter *writer, const ID *id_owner, const ModifierDa
BLI_assert(!ID_IS_LINKED(id_owner));
const bool is_local = (md->flag & eModifierFlag_OverrideLibrary_Local) != 0;
if (!is_local) {
- /* Modifier comming from linked data cannot be bound from an override, so we can remove all
- * binding data, can save a sgnificant amout of memory. */
+ /* Modifier coming from linked data cannot be bound from an override, so we can remove all
+ * binding data, can save a significant amount of memory. */
smd.bind_verts_num = 0;
smd.verts = NULL;
}