mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-08 11:30:06 +00:00
b3007519fc
git-svn-id: https://cvs.khronos.org/svn/repos/ogl/trunk/ecosystem/public/sdk/tools/glslang@27732 e7fa87d3-cd2b-0410-9028-fcbf551c1848
20 lines
485 B
GLSL
20 lines
485 B
GLSL
#version 300 es
|
|
precision mediump float;
|
|
in vec4 pos;
|
|
layout (location = 2) in vec4 color; // ERROR
|
|
|
|
layout(location = 1) out vec4 c;
|
|
layout(location = 3) out vec4 p;
|
|
layout(location = 4) out vec4 q[2];
|
|
|
|
void main()
|
|
{
|
|
c = color;
|
|
p = pos;
|
|
q[1] = pos;
|
|
}
|
|
|
|
layout(location = 40) out float ca[4]; // ERROR, overlap, ERROR too big
|
|
layout(location = 41) out float cb[2]; // ERROR, overlap, ERROR too big
|
|
layout(location = 39) out float cc[6]; // ERROR, overlap, ERROR too big
|