summaryrefslogtreecommitdiff
path: root/gsk/resources/vulkan/outset-shadow.frag
blob: 30b0f9d94bbb994e4206a1ad8dfffd82f8216f50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#version 420 core

#include "clip.frag.glsl"
#include "rounded-rect.glsl"

layout(location = 0) in vec2 inPos;
layout(location = 1) in flat vec4 inOutline;
layout(location = 2) in flat vec4 inOutlineCornerWidths;
layout(location = 3) in flat vec4 inOutlineCornerHeights;
layout(location = 4) in flat vec4 inColor;
layout(location = 5) in flat vec2 inOffset;
layout(location = 6) in flat float inSpread;
layout(location = 7) in flat float inBlurRadius;

layout(location = 0) out vec4 color;

void main()
{
  RoundedRect outline = RoundedRect (vec4(inOutline.xy, inOutline.xy + inOutline.zw), inOutlineCornerWidths, inOutlineCornerHeights);
  RoundedRect outside = rounded_rect_shrink (outline, vec4(-inSpread));

  color = vec4(inColor.rgb * inColor.a, inColor.a);
  color = color * clamp (rounded_rect_coverage (outside, inPos - inOffset) -
                         rounded_rect_coverage (outline, inPos),
                         0.0, 1.0);
  color = clip (inPos, color);
}