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:
authorSergey Sharybin <sergey.vfx@gmail.com>2018-10-24 15:03:51 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2018-10-24 15:04:29 +0300
commit91c6beb28ab9c2914262c4010bcbc8d7f1e1bf29 (patch)
tree29e70ef6b2b2e77e4577cc979abfeb83155eaa46 /source/blender/blenkernel/BKE_modifier.h
parent547d31c8da1fcb938e91887909c5e2f3b3d180d5 (diff)
Cleanup: Remove unused modifiers callback
Was only used by subsurf in the past years, it is unlikely other modifiers will every need this any time soon.
Diffstat (limited to 'source/blender/blenkernel/BKE_modifier.h')
-rw-r--r--source/blender/blenkernel/BKE_modifier.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/source/blender/blenkernel/BKE_modifier.h b/source/blender/blenkernel/BKE_modifier.h
index 2be91406524..6b64b1663d8 100644
--- a/source/blender/blenkernel/BKE_modifier.h
+++ b/source/blender/blenkernel/BKE_modifier.h
@@ -172,7 +172,6 @@ typedef struct ModifierTypeInfo {
/********************* Non-deform modifier functions *********************/ /* DEPRECATED */
void (*applyModifier_DM_removed)(void);
- void (*applyModifierEM_DM_removed)(void);
/********************* Deform modifier functions *********************/
@@ -213,17 +212,6 @@ typedef struct ModifierTypeInfo {
struct Mesh *(*applyModifier)(struct ModifierData *md, const struct ModifierEvalContext *ctx,
struct Mesh *mesh);
- /* Like applyModifier but called during editmode (for supporting
- * modifiers).
- *
- * The mesh object that is returned must support the operations that
- * are expected from editmode objects. The same qualifications regarding
- * mesh apply as for applyModifier.
- */
- struct Mesh *(*applyModifierEM)(struct ModifierData *md, const struct ModifierEvalContext *ctx,
- struct BMEditMesh *editData,
- struct Mesh *mesh);
-
/********************* Optional functions *********************/
@@ -428,10 +416,6 @@ struct Mesh *modwrap_applyModifier(
ModifierData *md, const struct ModifierEvalContext *ctx,
struct Mesh *me);
-struct Mesh *modwrap_applyModifierEM(
- ModifierData *md, const struct ModifierEvalContext *ctx,
- struct BMEditMesh *em, struct Mesh *me);
-
void modwrap_deformVerts(
ModifierData *md, const struct ModifierEvalContext *ctx,
struct Mesh *me,