framework/replay: disable AA accounting when comparing with no tolerance
[piglit.git] / tests / spec / arb_arrays_of_arrays / compiler / redeclaration-too-small2.vert
blob14a78a29c80aa70cf4af5f3f1cd8104142914eb5
1 /* [config]
2  * expect_result: fail
3  * glsl_version: 1.20
4  * require_extensions: GL_ARB_arrays_of_arrays
5  * [end config]
6  */
7 #version 120
8 #extension GL_ARB_arrays_of_arrays: enable
10 float x[][2];
12 void foo() { x[3][1] = 2.; }
14 // The left most array must be at least 4 elements because of
15 // the previous access to x[3][1].
16 float x[][2] = float[][2](float[2](1., 2.),
17                           float[2](1., 2.));
19 void main()
21         foo();
22         gl_Position = vec4(x[0][0]);