Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_gpencil_modifier.h
| Show First 20 Lines • Show All 286 Lines • ▼ Show 20 Lines | void BKE_gpencil_modifier_set_error(struct GpencilModifierData *md, const char *format, ...) | ||||
| ATTR_PRINTF_FORMAT(2, 3); | ATTR_PRINTF_FORMAT(2, 3); | ||||
| void BKE_gpencil_modifiers_foreach_ID_link(struct Object *ob, | void BKE_gpencil_modifiers_foreach_ID_link(struct Object *ob, | ||||
| GreasePencilIDWalkFunc walk, | GreasePencilIDWalkFunc walk, | ||||
| void *userData); | void *userData); | ||||
| void BKE_gpencil_modifiers_foreach_tex_link(struct Object *ob, | void BKE_gpencil_modifiers_foreach_tex_link(struct Object *ob, | ||||
| GreasePencilTexWalkFunc walk, | GreasePencilTexWalkFunc walk, | ||||
| void *userData); | void *userData); | ||||
| typedef struct GpencilVirtualModifierData { | |||||
| ArmatureGpencilModifierData amd; | |||||
| LatticeGpencilModifierData lmd; | |||||
| } GpencilVirtualModifierData; | |||||
| struct GpencilModifierData *BKE_gpencil_modifiers_get_virtual_modifierlist( | |||||
| const struct Object *ob, struct GpencilVirtualModifierData *data); | |||||
| bool BKE_gpencil_has_geometry_modifiers(struct Object *ob); | bool BKE_gpencil_has_geometry_modifiers(struct Object *ob); | ||||
| bool BKE_gpencil_has_time_modifiers(struct Object *ob); | bool BKE_gpencil_has_time_modifiers(struct Object *ob); | ||||
| bool BKE_gpencil_has_transform_modifiers(struct Object *ob); | bool BKE_gpencil_has_transform_modifiers(struct Object *ob); | ||||
| void BKE_gpencil_lattice_init(struct Object *ob); | void BKE_gpencil_lattice_init(struct Object *ob); | ||||
| void BKE_gpencil_lattice_clear(struct Object *ob); | void BKE_gpencil_lattice_clear(struct Object *ob); | ||||
| void BKE_gpencil_modifiers_calc(struct Depsgraph *depsgraph, | void BKE_gpencil_modifiers_calc(struct Depsgraph *depsgraph, | ||||
| Show All 15 Lines | |||||