summaryrefslogtreecommitdiff
path: root/gsk/resources/vulkan/color.frag
blob: 6b299dffd076eed99f10b98d03cb160dfc31281e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#version 420 core

#include "clip.frag.glsl"

layout(location = 0) in vec2 inPos;
layout(location = 1) in vec4 inColor;

layout(location = 0) out vec4 color;

void main()
{
  color = clip (inPos, vec4(inColor.rgb * inColor.a, inColor.a));
}