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 <ideasman42@gmail.com>2014-10-23 12:38:14 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-10-23 12:38:38 +0400
commiteaaeae469968c5c78a5d7e6d202f1af00b382a79 (patch)
tree259673f3c807361df29f16d6325a2bf659c06b52 /source/blender/modifiers
parent88fe8962434b7fe00fa713a84c58d2dbee481e3b (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/modifiers')
-rw-r--r--source/blender/modifiers/intern/MOD_meshdeform.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/modifiers/intern/MOD_meshdeform.c b/source/blender/modifiers/intern/MOD_meshdeform.c
index c3cbc0761e9..c509bf44fc8 100644
--- a/source/blender/modifiers/intern/MOD_meshdeform.c
+++ b/source/blender/modifiers/intern/MOD_meshdeform.c
@@ -181,7 +181,7 @@ static float meshdeform_dynamic_bind(MeshDeformModifierData *mmd, float (*dco)[3
{
__m128 cageweight_r = _mm_set1_ps(cageweight);
/* This will load one extra element, this is ok because
- * we ignore that part of reigister anyway.
+ * we ignore that part of register anyway.
*/
__m128 cageco_r = _mm_loadu_ps(cageco);
co = _mm_add_ps(co,
@@ -197,7 +197,7 @@ static float meshdeform_dynamic_bind(MeshDeformModifierData *mmd, float (*dco)[3
}
#ifdef __SSE2__
- copy_v3_v3(vec, (float*)&co);
+ copy_v3_v3(vec, (float *)&co);
#else
copy_v3_v3(vec, co);
#endif