Changeset View
Changeset View
Standalone View
Standalone View
source/blender/modifiers/intern/MOD_shapekey.c
| Show First 20 Lines • Show All 116 Lines • ▼ Show 20 Lines | static void deformMatricesEM(ModifierData *UNUSED(md), | ||||
| } | } | ||||
| } | } | ||||
| ModifierTypeInfo modifierType_ShapeKey = { | ModifierTypeInfo modifierType_ShapeKey = { | ||||
| /* name */ "ShapeKey", | /* name */ "ShapeKey", | ||||
| /* structName */ "ShapeKeyModifierData", | /* structName */ "ShapeKeyModifierData", | ||||
| /* structSize */ sizeof(ShapeKeyModifierData), | /* structSize */ sizeof(ShapeKeyModifierData), | ||||
| /* type */ eModifierTypeType_OnlyDeform, | /* type */ eModifierTypeType_OnlyDeform, | ||||
| /* flags */ eModifierTypeFlag_AcceptsCVs | eModifierTypeFlag_AcceptsLattice | | /* flags */ eModifierTypeFlag_AcceptsCVs | eModifierTypeFlag_AcceptsVertexCosOnly | | ||||
| eModifierTypeFlag_SupportsEditmode, | eModifierTypeFlag_SupportsEditmode, | ||||
| /* copyData */ NULL, | /* copyData */ NULL, | ||||
| /* deformVerts */ deformVerts, | /* deformVerts */ deformVerts, | ||||
| /* deformMatrices */ deformMatrices, | /* deformMatrices */ deformMatrices, | ||||
| /* deformVertsEM */ deformVertsEM, | /* deformVertsEM */ deformVertsEM, | ||||
| /* deformMatricesEM */ deformMatricesEM, | /* deformMatricesEM */ deformMatricesEM, | ||||
| /* applyModifier */ NULL, | /* modifyMesh */ NULL, | ||||
| /* modifyHair */ NULL, | |||||
| /* modifyPointCloud */ NULL, | |||||
| /* modifyVolume */ NULL, | |||||
| /* initData */ NULL, | /* initData */ NULL, | ||||
| /* requiredDataMask */ NULL, | /* requiredDataMask */ NULL, | ||||
| /* freeData */ NULL, | /* freeData */ NULL, | ||||
| /* isDisabled */ NULL, | /* isDisabled */ NULL, | ||||
| /* updateDepsgraph */ NULL, | /* updateDepsgraph */ NULL, | ||||
| /* dependsOnTime */ NULL, | /* dependsOnTime */ NULL, | ||||
| /* dependsOnNormals */ NULL, | /* dependsOnNormals */ NULL, | ||||
| /* foreachObjectLink */ NULL, | /* foreachObjectLink */ NULL, | ||||
| /* foreachIDLink */ NULL, | /* foreachIDLink */ NULL, | ||||
| /* foreachTexLink */ NULL, | /* foreachTexLink */ NULL, | ||||
| /* freeRuntimeData */ NULL, | /* freeRuntimeData */ NULL, | ||||
| }; | }; | ||||