summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/glslang/src/Test/spv.set.vert
blob: e116c02bca217de2d71b09506f094fc3d5fdb2bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#version 450

layout(set = 4, binding = 7) uniform sampler2D samp2D;

layout(set = 0, binding = 8) buffer setBuf {
    vec4 color;
} setBufInst;

out vec4 color;

void main()
{
    color = setBufInst.color;
}