summaryrefslogtreecommitdiffstats
path: root/examples/vulkan/shared/color.frag
blob: 375587662f337625261eea0ea3ababb3f4ec6314 (plain)
1
2
3
4
5
6
7
8
9
10
#version 440

layout(location = 0) in vec3 v_color;

layout(location = 0) out vec4 fragColor;

void main()
{
    fragColor = vec4(v_color, 1.0);
}