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/modifier.c
parente7218e7049972053140d94410aea75e0c3e87c61 (diff)
Cleanup: naming
Rename DerivedMesh modifier functions to make room for mesh versions.
Diffstat (limited to 'source/blender/blenkernel/intern/modifier.c')
-rw-r--r--source/blender/blenkernel/intern/modifier.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/blenkernel/intern/modifier.c b/source/blender/blenkernel/intern/modifier.c
index 1863e454397..d9d3730b29f 100644
--- a/source/blender/blenkernel/intern/modifier.c
+++ b/source/blender/blenkernel/intern/modifier.c
@@ -826,7 +826,7 @@ void modifier_path_init(char *path, int path_maxlen, const char *name)
/* wrapper around ModifierTypeInfo.applyModifier that ensures valid normals */
-struct DerivedMesh *modwrap_applyModifier(
+struct DerivedMesh *modwrap_applyModifier_DM_deprecated(
ModifierData *md, const ModifierEvalContext *ctx,
struct DerivedMesh *dm)
{
@@ -839,7 +839,7 @@ struct DerivedMesh *modwrap_applyModifier(
return modifier_applyModifier_DM_deprecated(md, ctx, dm);
}
-struct DerivedMesh *modwrap_applyModifierEM(
+struct DerivedMesh *modwrap_applyModifierEM_DM_deprecated(
ModifierData *md, const ModifierEvalContext *ctx,
struct BMEditMesh *em, DerivedMesh *dm)
{
@@ -852,7 +852,7 @@ struct DerivedMesh *modwrap_applyModifierEM(
return modifier_applyModifierEM_DM_deprecated(md, ctx, em, dm);
}
-void modwrap_deformVerts(
+void modwrap_deformVerts_DM_deprecated(
ModifierData *md, const ModifierEvalContext *ctx,
DerivedMesh *dm, float (*vertexCos)[3], int numVerts)
{
@@ -865,7 +865,7 @@ void modwrap_deformVerts(
modifier_deformVerts_DM_deprecated(md, ctx, dm, vertexCos, numVerts);
}
-void modwrap_deformVertsEM(
+void modwrap_deformVertsEM_DM_deprecated(
ModifierData *md, const ModifierEvalContext *ctx,
struct BMEditMesh *em, DerivedMesh *dm,
float (*vertexCos)[3], int numVerts)