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:
Diffstat (limited to 'source/blender/modifiers/intern/MOD_meshcache.c')
-rw-r--r--source/blender/modifiers/intern/MOD_meshcache.c16
1 files changed, 3 insertions, 13 deletions
diff --git a/source/blender/modifiers/intern/MOD_meshcache.c b/source/blender/modifiers/intern/MOD_meshcache.c
index 822da40edb7..43757c0e95d 100644
--- a/source/blender/modifiers/intern/MOD_meshcache.c
+++ b/source/blender/modifiers/intern/MOD_meshcache.c
@@ -176,17 +176,8 @@ static void meshcache_do(MeshCacheModifierData *mcmd,
BKE_modifier_set_error(ob, &mcmd->modifier, "'Integrate' requires faces");
}
else {
- /* the moons align! */
- int i;
-
- float(*vertexCos_Source)[3] = MEM_malloc_arrayN(
- verts_num, sizeof(*vertexCos_Source), __func__);
float(*vertexCos_New)[3] = MEM_malloc_arrayN(verts_num, sizeof(*vertexCos_New), __func__);
- const MVert *mv = BKE_mesh_verts(me);
-
- for (i = 0; i < verts_num; i++, mv++) {
- copy_v3_v3(vertexCos_Source[i], mv->co);
- }
+ const float(*positions)[3] = BKE_mesh_positions(me);
BKE_mesh_calc_relative_deform(
BKE_mesh_polys(me),
@@ -194,8 +185,8 @@ static void meshcache_do(MeshCacheModifierData *mcmd,
BKE_mesh_loops(me),
me->totvert,
- (const float(*)[3])vertexCos_Source, /* From the original Mesh. */
- (const float(*)[3])vertexCos_Real, /* the input we've been given (shape keys!) */
+ (const float(*)[3])positions, /* From the original Mesh. */
+ (const float(*)[3])vertexCos_Real, /* the input we've been given (shape keys!) */
(const float(*)[3])vertexCos, /* The result of this modifier. */
vertexCos_New /* The result of this function. */
@@ -204,7 +195,6 @@ static void meshcache_do(MeshCacheModifierData *mcmd,
/* write the corrected locations back into the result */
memcpy(vertexCos, vertexCos_New, sizeof(*vertexCos) * verts_num);
- MEM_freeN(vertexCos_Source);
MEM_freeN(vertexCos_New);
}
}