From e12c08e8d170b7ca40f204a5b0423c23a9fbc2c1 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 17 Apr 2019 06:17:24 +0200 Subject: ClangFormat: apply to source, most of intern Apply clang format as proposed in T53211. For details on usage and instructions for migrating branches without conflicts, see: https://wiki.blender.org/wiki/Tools/ClangFormat --- source/blender/shader_fx/intern/FX_shader_shadow.c | 81 +++++++++++----------- 1 file changed, 41 insertions(+), 40 deletions(-) (limited to 'source/blender/shader_fx/intern/FX_shader_shadow.c') diff --git a/source/blender/shader_fx/intern/FX_shader_shadow.c b/source/blender/shader_fx/intern/FX_shader_shadow.c index 5c99b245954..04160f618eb 100644 --- a/source/blender/shader_fx/intern/FX_shader_shadow.c +++ b/source/blender/shader_fx/intern/FX_shader_shadow.c @@ -40,67 +40,68 @@ static void initData(ShaderFxData *md) { - ShadowShaderFxData *gpfx = (ShadowShaderFxData *)md; - gpfx->rotation = 0.0f; - ARRAY_SET_ITEMS(gpfx->offset, 15, 20); - ARRAY_SET_ITEMS(gpfx->scale, 1.0f, 1.0f); - ARRAY_SET_ITEMS(gpfx->shadow_rgba, 0.54f, 0.62f, 1.0f, 0.9f); + ShadowShaderFxData *gpfx = (ShadowShaderFxData *)md; + gpfx->rotation = 0.0f; + ARRAY_SET_ITEMS(gpfx->offset, 15, 20); + ARRAY_SET_ITEMS(gpfx->scale, 1.0f, 1.0f); + ARRAY_SET_ITEMS(gpfx->shadow_rgba, 0.54f, 0.62f, 1.0f, 0.9f); - gpfx->amplitude = 10.0f; - gpfx->period = 20.0f; - gpfx->phase = 0.0f; - gpfx->orientation = 1; + gpfx->amplitude = 10.0f; + gpfx->period = 20.0f; + gpfx->phase = 0.0f; + gpfx->orientation = 1; - ARRAY_SET_ITEMS(gpfx->blur, 5, 5); - gpfx->samples = 2; + ARRAY_SET_ITEMS(gpfx->blur, 5, 5); + gpfx->samples = 2; - gpfx->object = NULL; + gpfx->object = NULL; } static void copyData(const ShaderFxData *md, ShaderFxData *target) { - BKE_shaderfx_copyData_generic(md, target); + BKE_shaderfx_copyData_generic(md, target); } static void updateDepsgraph(ShaderFxData *fx, const ModifierUpdateDepsgraphContext *ctx) { - ShadowShaderFxData *fxd = (ShadowShaderFxData *)fx; - if (fxd->object != NULL) { - DEG_add_object_relation(ctx->node, fxd->object, DEG_OB_COMP_TRANSFORM, "Shadow ShaderFx"); - } - DEG_add_object_relation(ctx->node, ctx->object, DEG_OB_COMP_TRANSFORM, "Shadow ShaderFx"); + ShadowShaderFxData *fxd = (ShadowShaderFxData *)fx; + if (fxd->object != NULL) { + DEG_add_object_relation(ctx->node, fxd->object, DEG_OB_COMP_TRANSFORM, "Shadow ShaderFx"); + } + DEG_add_object_relation(ctx->node, ctx->object, DEG_OB_COMP_TRANSFORM, "Shadow ShaderFx"); } static bool isDisabled(ShaderFxData *fx, int UNUSED(userRenderParams)) { - ShadowShaderFxData *fxd = (ShadowShaderFxData *)fx; + ShadowShaderFxData *fxd = (ShadowShaderFxData *)fx; - return (!fxd->object) && (fxd->flag & FX_SHADOW_USE_OBJECT); + return (!fxd->object) && (fxd->flag & FX_SHADOW_USE_OBJECT); } -static void foreachObjectLink( - ShaderFxData *fx, Object *ob, - ShaderFxObjectWalkFunc walk, void *userData) +static void foreachObjectLink(ShaderFxData *fx, + Object *ob, + ShaderFxObjectWalkFunc walk, + void *userData) { - ShadowShaderFxData *fxd = (ShadowShaderFxData *)fx; + ShadowShaderFxData *fxd = (ShadowShaderFxData *)fx; - walk(userData, ob, &fxd->object, IDWALK_CB_NOP); + walk(userData, ob, &fxd->object, IDWALK_CB_NOP); } ShaderFxTypeInfo shaderfx_Type_Shadow = { - /* name */ "Shadow", - /* structName */ "ShadowShaderFxData", - /* structSize */ sizeof(ShadowShaderFxData), - /* type */ eShaderFxType_GpencilType, - /* flags */ 0, - - /* copyData */ copyData, - - /* initData */ initData, - /* freeData */ NULL, - /* isDisabled */ isDisabled, - /* updateDepsgraph */ updateDepsgraph, - /* dependsOnTime */ NULL, - /* foreachObjectLink */ foreachObjectLink, - /* foreachIDLink */ NULL, + /* name */ "Shadow", + /* structName */ "ShadowShaderFxData", + /* structSize */ sizeof(ShadowShaderFxData), + /* type */ eShaderFxType_GpencilType, + /* flags */ 0, + + /* copyData */ copyData, + + /* initData */ initData, + /* freeData */ NULL, + /* isDisabled */ isDisabled, + /* updateDepsgraph */ updateDepsgraph, + /* dependsOnTime */ NULL, + /* foreachObjectLink */ foreachObjectLink, + /* foreachIDLink */ NULL, }; -- cgit v1.2.3