framework/replay: disable AA accounting when comparing with no tolerance
[piglit.git] / tests / spec / glsl-1.50 / compiler / gs-redeclares-pervertex-in-before-other-usage.geom
blobf9b2b5e42100759fbbedb785220bbd4479ca001d
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 //     It is also a compilation error to redeclare a built-in block
11 //     and then use a member from that built- in block that was not
12 //     included in the 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 #version 150
20 layout(triangles) in;
21 layout(triangle_strip, max_vertices = 3) out;
23 in gl_PerVertex {
24     vec4 gl_Position;
25 } gl_in[];
27 float foo()
29   return gl_in[0].gl_PointSize;
32 void main()