Changeset View
Changeset View
Standalone View
Standalone View
source/blender/shader_fx/intern/FX_shader_flip.c
| Show First 20 Lines • Show All 41 Lines • ▼ Show 20 Lines | static void copyData(const ShaderFxData *md, ShaderFxData *target) | ||||
| BKE_shaderfx_copyData_generic(md, target); | BKE_shaderfx_copyData_generic(md, target); | ||||
| } | } | ||||
| ShaderFxTypeInfo shaderfx_Type_Flip = { | ShaderFxTypeInfo shaderfx_Type_Flip = { | ||||
| /* name */ "Flip", | /* name */ "Flip", | ||||
| /* structName */ "FlipShaderFxData", | /* structName */ "FlipShaderFxData", | ||||
| /* structSize */ sizeof(FlipShaderFxData), | /* structSize */ sizeof(FlipShaderFxData), | ||||
| /* type */ eShaderFxType_GpencilType, | /* type */ eShaderFxType_GpencilType, | ||||
| /* flags */ eShaderFxTypeFlag_Single, | /* flags */ 0, | ||||
| /* copyData */ copyData, | /* copyData */ copyData, | ||||
| /* initData */ initData, | /* initData */ initData, | ||||
| /* freeData */ NULL, | /* freeData */ NULL, | ||||
| /* isDisabled */ NULL, | /* isDisabled */ NULL, | ||||
| /* updateDepsgraph */ NULL, | /* updateDepsgraph */ NULL, | ||||
| /* dependsOnTime */ NULL, | /* dependsOnTime */ NULL, | ||||
| /* foreachObjectLink */ NULL, | /* foreachObjectLink */ NULL, | ||||
| /* foreachIDLink */ NULL, | /* foreachIDLink */ NULL, | ||||
| }; | }; | ||||