summaryrefslogtreecommitdiffstats
path: root/tests/manual/rhi/multiview/multiview.frag
blob: afcbff3504f731fdde4a6a5870c753f0d9849e4f (plain)
1
2
3
4
5
6
7
8
9
10
11
#version 440

layout(location = 0) in vec3 v_color;
layout(location = 1) in flat uint v_viewIndex;

layout(location = 0) out vec4 fragColor;

void main()
{
    fragColor = vec4(v_color + v_viewIndex * 0.5, 1.0);
}