framework/replay: disable AA accounting when comparing with no tolerance
[piglit.git] / tests / spec / arb_arrays_of_arrays / compiler / function-parameter-declaration-array-var-array.vert
blobb003ed571919251409926869b7b9aef5d22931e0
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 attribute vec4 vert;
12 void foo(vec4 [2] x[4]);
14 void main()
16   vec4 y[4][2];
17   foo(y);
18   gl_Position = vert;