aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/scenegraph/shaders_ng/vertexcolor.frag
blob: ede283be0c7be3f99bfe516978e26f2858b20344 (plain)
1
2
3
4
5
6
7
8
9
#version 440

layout(location = 0) in vec4 color;
layout(location = 0) out vec4 fragColor;

void main()
{
    fragColor = color;
}