framework/replay: disable AA accounting when comparing with no tolerance
[piglit.git] / tests / spec / arb_arrays_of_arrays / compiler / assignment-2d-to-3d.vert
blob34037ecbbcbdfe83ba692e8cc155d81816a51f34
1 /* [config]
2  * expect_result: pass
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 void main()
12   vec4 a[2][4];
13   vec4[2][4] b[3];
15   b[0] = a;
17   gl_Position = b[0][1][1];