framework/replay: disable AA accounting when comparing with no tolerance
[piglit.git] / tests / spec / arb_gpu_shader5 / compiler / stream-qualifier / incorrect-negative-layout-qualifier-stream.geom
blob6b873b0b45861c8200b1f2f1e706deb0ac629d8c
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 // Test to detect negative value of layout qualifier 'stream'
9 //
10 // From ARB_gpu_shader5 spec:
12 // "If an implementation supports <N> vertex streams, the
13 //     individual streams are numbered 0 through <N>-1"
16 #version 150
17 #extension GL_ARB_gpu_shader5 : enable
19 layout(points) in;
20 layout(points, stream=-2, max_vertices=3) out;
22 void main()