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>2018-10-09 04:23:22 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-10-09 04:23:22 +0300
commitc8c3bbaadeeb469a83f8b3ae47599f28fa94ad30 (patch)
treed9e8389dd5e35ab1c19dabed9166f2bb45f99d3d /source/blender/blenkernel/intern/DerivedMesh.c
parente7218e7049972053140d94410aea75e0c3e87c61 (diff)
Cleanup: naming
Rename DerivedMesh modifier functions to make room for mesh versions.
Diffstat (limited to 'source/blender/blenkernel/intern/DerivedMesh.c')
-rw-r--r--source/blender/blenkernel/intern/DerivedMesh.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/blenkernel/intern/DerivedMesh.c b/source/blender/blenkernel/intern/DerivedMesh.c
index 4c55591db31..605ffb41344 100644
--- a/source/blender/blenkernel/intern/DerivedMesh.c
+++ b/source/blender/blenkernel/intern/DerivedMesh.c
@@ -2071,9 +2071,9 @@ static void editbmesh_calc_modifiers(
}
if (mti->deformVertsEM)
- modwrap_deformVertsEM(md, &mectx, em, dm, deformedVerts, numVerts);
+ modwrap_deformVertsEM_DM_deprecated(md, &mectx, em, dm, deformedVerts, numVerts);
else
- modwrap_deformVerts(md, &mectx, dm, deformedVerts, numVerts);
+ modwrap_deformVerts_DM_deprecated(md, &mectx, dm, deformedVerts, numVerts);
}
else {
DerivedMesh *ndm;
@@ -2114,10 +2114,10 @@ static void editbmesh_calc_modifiers(
DM_set_only_copy(orcodm, mask | CD_MASK_ORIGINDEX);
if (mti->applyModifierEM) {
- ndm = modwrap_applyModifierEM(md, &mectx_orco, em, orcodm);
+ ndm = modwrap_applyModifierEM_DM_deprecated(md, &mectx_orco, em, orcodm);
}
else {
- ndm = modwrap_applyModifier(md, &mectx_orco, orcodm);
+ ndm = modwrap_applyModifier_DM_deprecated(md, &mectx_orco, orcodm);
}
ASSERT_IS_VALID_DM(ndm);
@@ -2142,9 +2142,9 @@ static void editbmesh_calc_modifiers(
}
if (mti->applyModifierEM)
- ndm = modwrap_applyModifierEM(md, &mectx_cache, em, dm);
+ ndm = modwrap_applyModifierEM_DM_deprecated(md, &mectx_cache, em, dm);
else
- ndm = modwrap_applyModifier(md, &mectx_cache, dm);
+ ndm = modwrap_applyModifier_DM_deprecated(md, &mectx_cache, dm);
ASSERT_IS_VALID_DM(ndm);
if (ndm) {