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 --- .../shaders/fx/gpencil_fx_shadow_resolve_frag.glsl | 30 +++++++++++----------- 1 file changed, 15 insertions(+), 15 deletions(-) (limited to 'source/blender/draw/engines/gpencil/shaders/fx/gpencil_fx_shadow_resolve_frag.glsl') diff --git a/source/blender/draw/engines/gpencil/shaders/fx/gpencil_fx_shadow_resolve_frag.glsl b/source/blender/draw/engines/gpencil/shaders/fx/gpencil_fx_shadow_resolve_frag.glsl index 0343d0d42fc..3ef11008adf 100644 --- a/source/blender/draw/engines/gpencil/shaders/fx/gpencil_fx_shadow_resolve_frag.glsl +++ b/source/blender/draw/engines/gpencil/shaders/fx/gpencil_fx_shadow_resolve_frag.glsl @@ -10,23 +10,23 @@ out vec4 FragColor; void main() { - ivec2 uv = ivec2(gl_FragCoord.xy); + ivec2 uv = ivec2(gl_FragCoord.xy); - float stroke_depth = texelFetch(strokeDepth, uv.xy, 0).r; - float shadow_depth = texelFetch(shadowDepth, uv.xy, 0).r; - vec4 stroke_pixel= texelFetch(strokeColor, uv.xy, 0); - vec4 shadow_pixel= texelFetch(shadowColor, uv.xy, 0); + float stroke_depth = texelFetch(strokeDepth, uv.xy, 0).r; + float shadow_depth = texelFetch(shadowDepth, uv.xy, 0).r; + vec4 stroke_pixel = texelFetch(strokeColor, uv.xy, 0); + vec4 shadow_pixel = texelFetch(shadowColor, uv.xy, 0); - /* copy original pixel */ - vec4 outcolor = stroke_pixel; - float outdepth = stroke_depth; + /* copy original pixel */ + vec4 outcolor = stroke_pixel; + float outdepth = stroke_depth; - /* if stroke is not on top, copy shadow */ - if ((stroke_pixel.a <= 0.2) && (shadow_pixel.a > 0.0)) { - outcolor = shadow_pixel; - outdepth = shadow_depth; - } + /* if stroke is not on top, copy shadow */ + if ((stroke_pixel.a <= 0.2) && (shadow_pixel.a > 0.0)) { + outcolor = shadow_pixel; + outdepth = shadow_depth; + } - gl_FragDepth = outdepth; - FragColor = outcolor; + gl_FragDepth = outdepth; + FragColor = outcolor; } -- cgit v1.2.3