mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-08 19:40:06 +00:00
e1b2e39a56
git-svn-id: https://cvs.khronos.org/svn/repos/ogl/trunk/ecosystem/public/sdk/tools/glslang@24400 e7fa87d3-cd2b-0410-9028-fcbf551c1848
47 lines
1.2 KiB
GLSL
47 lines
1.2 KiB
GLSL
#version 430 core
|
|
|
|
layout(location = 3) vec4 v4; // ERROR
|
|
|
|
layout(location = 4) uniform vec4 uv4;
|
|
|
|
layout(location = 2) in inb1 { vec4 v; } b1; // ERROR
|
|
layout(location = 2) out outb1 { vec4 v; } b2; // ERROR
|
|
|
|
out gl_PerVertex {
|
|
float gl_ClipDistance[];
|
|
};
|
|
|
|
void foo()
|
|
{
|
|
gl_ClipDistance[2] = 3.7;
|
|
}
|
|
|
|
struct sp {
|
|
highp float f;
|
|
in float g; // ERROR
|
|
uniform float h; // ERROR
|
|
invariant float i; // ERROR
|
|
volatile float j; // ERROR
|
|
layout(row_major) mat3 m3; // ERROR
|
|
};
|
|
|
|
void foo3(invariant vec4 v4, // ERROR
|
|
volatile vec3 v3,
|
|
layout(location = 3) vec2 v2, // ERROR
|
|
centroid vec3 cv3) // ERROR
|
|
{
|
|
}
|
|
|
|
struct S {
|
|
mat3x2 m[7]; // needs 7*3 locations
|
|
float f; // needs 1 location
|
|
}; // needs 22 locations
|
|
|
|
layout(location = 10) out S cs[2]; // 10 through 10 + 2 * 22 - 1 = 53
|
|
layout(location = 54) out float cf;
|
|
layout(location = 53) out float cg; // ERROR, collision at 31
|
|
|
|
layout(location = 10) in vec4 alias1;
|
|
layout(location = 10) in vec4 alias2; // okay for vertex input on desktop
|
|
|
|
float gl_ClipDistance[17]; // ERROR, size too big |