[Bf-blender-cvs] [9b2f1c0b381] functions: fix modifier definition

Jacques Lucke noreply at git.blender.org
Mon Apr 1 13:52:24 CEST 2019


Commit: 9b2f1c0b381316575d82225d71e360c04a3e2856
Author: Jacques Lucke
Date:   Mon Apr 1 13:51:55 2019 +0200
Branches: functions
https://developer.blender.org/rB9b2f1c0b381316575d82225d71e360c04a3e2856

fix modifier definition

===================================================================

M	source/blender/modifiers/intern/MOD_functiondeform.c
M	source/blender/modifiers/intern/MOD_functionpoints.c

===================================================================

diff --git a/source/blender/modifiers/intern/MOD_functiondeform.c b/source/blender/modifiers/intern/MOD_functiondeform.c
index c988c814c75..bbda101fa34 100644
--- a/source/blender/modifiers/intern/MOD_functiondeform.c
+++ b/source/blender/modifiers/intern/MOD_functiondeform.c
@@ -162,12 +162,6 @@ ModifierTypeInfo modifierType_FunctionDeform = {
 	/* flags */             eModifierTypeFlag_AcceptsMesh | eModifierTypeFlag_SupportsEditmode,
 	/* copyData */          modifier_copyData_generic,
 
-	/* deformVerts_DM */    NULL,
-	/* deformMatrices_DM */ NULL,
-	/* deformVertsEM_DM */  NULL,
-	/* deformMatricesEM_DM*/NULL,
-	/* applyModifier_DM */  NULL,
-
 	/* deformVerts */       deformVerts,
 	/* deformMatrices */    NULL,
 	/* deformVertsEM */     deformVertsEM,
@@ -184,4 +178,5 @@ ModifierTypeInfo modifierType_FunctionDeform = {
 	/* foreachObjectLink */ NULL,
 	/* foreachIDLink */     foreachIDLink,
 	/* foreachTexLink */    NULL,
+	/* freeRuntimeData */   NULL,
 };
\ No newline at end of file
diff --git a/source/blender/modifiers/intern/MOD_functionpoints.c b/source/blender/modifiers/intern/MOD_functionpoints.c
index 50d73aad25a..d276dffe976 100644
--- a/source/blender/modifiers/intern/MOD_functionpoints.c
+++ b/source/blender/modifiers/intern/MOD_functionpoints.c
@@ -147,12 +147,6 @@ ModifierTypeInfo modifierType_FunctionPoints = {
 	/* flags */             eModifierTypeFlag_AcceptsMesh,
 	/* copyData */          modifier_copyData_generic,
 
-	/* PointsVerts_DM */    NULL,
-	/* deformMatrices_DM */ NULL,
-	/* deformVertsEM_DM */  NULL,
-	/* deformMatricesEM_DM*/NULL,
-	/* applyModifier_DM */  NULL,
-
 	/* deformVerts */       NULL,
 	/* deformMatrices */    NULL,
 	/* deformVertsEM */     NULL,
@@ -169,4 +163,5 @@ ModifierTypeInfo modifierType_FunctionPoints = {
 	/* foreachObjectLink */ NULL,
 	/* foreachIDLink */     foreachIDLink,
 	/* foreachTexLink */    NULL,
+	/* freeRuntimeData */   NULL,
 };
\ No newline at end of file



More information about the Bf-blender-cvs mailing list