blob: d211ef1114565cd0c89207f069d4820197b39373 [file] [log] [blame]
John Kessenichabde37f2015-05-15 21:36:01 +00001#version 450
2
John Kessenich55e7d112015-11-15 21:33:39 -07003layout(set = 4, binding = 7) uniform sampler2D samp2D;
John Kessenichabde37f2015-05-15 21:36:01 +00004
5layout(set = 0, binding = 8) buffer setBuf {
6 vec4 color;
7} setBufInst;
8
9out vec4 color;
10
11void main()
12{
13 color = setBufInst.color;
14}