framework/replay: disable AA accounting when comparing with no tolerance
[piglit.git] / tests / spec / arb_gpu_shader5 / compiler / incorrect-out-layout-qualifier-invocations.geom
blob4bf54813f9f3c25efdac5c5b555e611c41097551
1 // [config]
2 // expect_result: fail
3 // glsl_version: 1.50
4 // require_extensions: GL_ARB_gpu_shader5
5 // check_link: false
6 // [end config]
7 //
8 // Tests for invalid output layout qualifiers.
9 //
11 #version 150
12 #extension GL_ARB_gpu_shader5 : enable
14 layout(points) in;
15 layout(triangle_strip, max_vertices=3, invocations=1) out;
17 void main()