ext_gpu_shader4: add compiler tests for everything
[piglit.git] / tests / spec / glsl-1.50 / compiler / vs-redeclares-pervertex-out-after-other-global-redeclaration.vert
blob06017c21c52ba05c89beaad70c3c5dcbdcf7796b
1 // [config]
2 // expect_result: fail
3 // glsl_version: 1.50
4 // check_link: true
5 // [end config]
6 //
7 // From section 7.1 (Built-In Language Variables) of the GLSL 4.10
8 // spec:
9 //
10 //     Also, if a built-in interface block is redeclared, no member of
11 //     the built-in declaration can be redeclared outside the block
12 //     redeclaration.
14 // This appears to be a clarification to the behaviour established for
15 // gl_PerVertex by GLSL 1.50, therefore we test it using GLSL version
16 // 1.50.
18 // In this test we attempt to redeclare gl_PerVertex after having
19 // redeclared gl_ClipDistance globally, and gl_ClipDistance is not
20 // present in the redeclaration of gl_PerVertex.
22 #version 150
24 out float gl_ClipDistance[4];
26 out gl_PerVertex {
27     vec4 gl_Position;
30 void main()