mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-09 20:10:06 +00:00
89400ea73e
Some layout qualifiers must not be on an object and had a TBD for testing them: early_fragment_tests, cw/ccw, points, point_mode, and fractional_even_spacing/fractional_odd_spacing/equal_spacing.
22 lines
705 B
GLSL
22 lines
705 B
GLSL
#version 450 core
|
|
|
|
in gl_PerVertex {
|
|
float gl_CullDistance[3];
|
|
} gl_in[gl_MaxPatchVertices];
|
|
|
|
out gl_PerVertex {
|
|
float gl_CullDistance[3];
|
|
};
|
|
|
|
void main()
|
|
{
|
|
gl_CullDistance[2] = gl_in[1].gl_CullDistance[2];
|
|
}
|
|
|
|
layout(equal_spacing) in float f1[]; // ERROR, must be standalone
|
|
layout(fractional_even_spacing) in float f2[]; // ERROR, must be standalone
|
|
layout(fractional_odd_spacing) in float f3[]; // ERROR, must be standalone
|
|
layout(cw) in float f4[]; // ERROR, must be standalone
|
|
layout(ccw) in float f5[]; // ERROR, must be standalone
|
|
layout(point_mode) in float f6[]; // ERROR, must be standalone
|