[Bf-blender-cvs] [d6e5d9a5781] hair_guides: Add new modifier callbacks for switching from DerivedMesh.

Lukas Tönne noreply at git.blender.org
Mon May 7 10:30:05 CEST 2018


Commit: d6e5d9a5781264c26ea81330f4bd5f90b58e6255
Author: Lukas Tönne
Date:   Sun May 6 10:54:49 2018 +0100
Branches: hair_guides
https://developer.blender.org/rBd6e5d9a5781264c26ea81330f4bd5f90b58e6255

Add new modifier callbacks for switching from DerivedMesh.

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

M	source/blender/modifiers/intern/MOD_fur.c

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

diff --git a/source/blender/modifiers/intern/MOD_fur.c b/source/blender/modifiers/intern/MOD_fur.c
index 4197e69b7ef..f49f7a602dd 100644
--- a/source/blender/modifiers/intern/MOD_fur.c
+++ b/source/blender/modifiers/intern/MOD_fur.c
@@ -152,12 +152,21 @@ ModifierTypeInfo modifierType_Fur = {
 	                        eModifierTypeFlag_SupportsEditmode,
 
 	/* copyData */          copyData,
+
+	/* deformVerts_DM */    NULL,
+	/* deformMatrices_DM */ NULL,
+	/* deformVertsEM_DM */  NULL,
+	/* deformMatricesEM_DM*/NULL,
+	/* applyModifier_DM */  applyModifier,
+	/* applyModifierEM_DM */NULL,
+
 	/* deformVerts */       NULL,
 	/* deformMatrices */    NULL,
 	/* deformVertsEM */     NULL,
 	/* deformMatricesEM */  NULL,
-	/* applyModifier */     applyModifier,
+	/* applyModifier */     NULL,
 	/* applyModifierEM */   NULL,
+
 	/* initData */          initData,
 	/* requiredDataMask */  NULL,
 	/* freeData */          freeData,



More information about the Bf-blender-cvs mailing list