framework/replay: disable AA accounting when comparing with no tolerance
[piglit.git] / tests / spec / arb_gpu_shader5 / compiler / correct-multiple-layout-qualifier-invocations.geom
blob51d05c1df727bf4b8c4a3b2563fd833652980389
1 // [config]
2 // expect_result: pass
3 // glsl_version: 1.50
4 // require_extensions: GL_ARB_gpu_shader5
5 // check_link: false
6 // [end config]
7 //
8 // ARB_gpu_shader5 spec says:
9 //   "If an invocation count is declared, all such declarations must
10 //    specify the same count."
12 // Tests for multiple declarations of layout qualifier 'invocations'.
15 #version 150
16 #extension GL_ARB_gpu_shader5 : enable
18 layout(points, invocations=4) in;
19 layout(invocations=4) in;
20 layout(triangle_strip, max_vertices=3) out;
22 void main()