blob: 70cbc9a5231020a2751cd75afbc989cca24fbfca [file] [log] [blame]
John Kesseniche9942d22013-04-09 01:20:01 +00001#version 300 es
John Kessenich41a36bb2013-06-19 05:41:25 +00002precision mediump float;
John Kesseniche9942d22013-04-09 01:20:01 +00003in vec4 pos;
John Kessenich63eed382013-04-10 23:30:05 +00004layout (location = 2) in vec4 color; // ERROR
John Kesseniche9942d22013-04-09 01:20:01 +00005
John Kessenich63eed382013-04-10 23:30:05 +00006layout(location = 1) out vec4 c;
John Kesseniche9942d22013-04-09 01:20:01 +00007layout(location = 3) out vec4 p;
John Kessenich63eed382013-04-10 23:30:05 +00008layout(location = 4) out vec4 q[2];
John Kesseniche9942d22013-04-09 01:20:01 +00009
10void main()
11{
12 c = color;
13 p = pos;
John Kessenich63eed382013-04-10 23:30:05 +000014 q[1] = pos;
John Kesseniche9942d22013-04-09 01:20:01 +000015}
John Kessenich0b391372013-12-05 20:07:56 +000016
17layout(location = 40) out float ca[4];
18layout(location = 41) out float cb[2]; // ERROR, overlap
19layout(location = 39) out float cc[6]; // ERROR, overlap