framework/replay: disable AA accounting when comparing with no tolerance
[piglit.git] / tests / spec / glsl-1.50 / compiler / geometry / clip-distance-in-implicit-length.geom
blobb942b6b21cd7e6d35f171be3f4f12b8cf2d031f5
1 /* [config]
2  * expect_result: fail
3  * glsl_version: 1.50
4  * check_link: true
5  * [end config]
6  *
7  * This test verifies that the gl_ClipDistance input is predeclared as
8  * unsized by attempting to take the length of
9  * gl_in[0].gl_ClipDistanceIn, an operation that is not allowed on
10  * unsized arrays.
11  */
12 #version 150
14 layout(triangles) in;
15 layout(triangle_strip, max_vertices = 3) out;
17 void main()
19   gl_Position = vec4(gl_in[0].gl_ClipDistance.length());
20   EmitVertex();