Changeset View
Changeset View
Standalone View
Standalone View
source/blender/modifiers/intern/MOD_boolean.c
| Show First 20 Lines • Show All 345 Lines • ▼ Show 20 Lines | static void requiredDataMask(Object *UNUSED(ob), | ||||
| r_cddata_masks->fmask |= CD_MASK_MTFACE; | r_cddata_masks->fmask |= CD_MASK_MTFACE; | ||||
| } | } | ||||
| ModifierTypeInfo modifierType_Boolean = { | ModifierTypeInfo modifierType_Boolean = { | ||||
| /* name */ "Boolean", | /* name */ "Boolean", | ||||
| /* structName */ "BooleanModifierData", | /* structName */ "BooleanModifierData", | ||||
| /* structSize */ sizeof(BooleanModifierData), | /* structSize */ sizeof(BooleanModifierData), | ||||
| /* type */ eModifierTypeType_Nonconstructive, | /* type */ eModifierTypeType_Nonconstructive, | ||||
| /* flags */ eModifierTypeFlag_AcceptsMesh | eModifierTypeFlag_UsesPointCache, | /* flags */ eModifierTypeFlag_AcceptsMesh, | ||||
| /* copyData */ modifier_copyData_generic, | /* copyData */ modifier_copyData_generic, | ||||
| /* deformVerts */ NULL, | /* deformVerts */ NULL, | ||||
| /* deformMatrices */ NULL, | /* deformMatrices */ NULL, | ||||
| /* deformVertsEM */ NULL, | /* deformVertsEM */ NULL, | ||||
| /* deformMatricesEM */ NULL, | /* deformMatricesEM */ NULL, | ||||
| /* applyModifier */ applyModifier, | /* applyModifier */ applyModifier, | ||||
| Show All 13 Lines | |||||