framework/replay: disable AA accounting when comparing with no tolerance
[piglit.git] / tests / spec / arb_arrays_of_arrays / compiler / arrays-of-struct-with-field-arrays.vert
blobf04568b7e7efda698c246f1b2ea2443461c594fa
1 /* [config]
2  * expect_result: pass
3  * glsl_version: 1.20
4  * require_extensions: GL_ARB_arrays_of_arrays
5  * [end config]
6  *
7  * From page 18 (page 24 of the PDF) of the GLSL 1.20 spec:
8  *
9  *     "Member declarators can contain arrays.  Such arrays must have a size
10  *     specified, and the size must be an integral constant expression that's
11  *     greater than zero (see Section 4.3.3 "Constant Expressions")."
12  *
13  * From page 19 (page 25 of the PDF) of the GLSL 1.20 spec:
14  *
15  *     "All basic types and structures can be formed into arrays."
16  */
17 #version 120
18 #extension GL_ARB_arrays_of_arrays: enable
20 struct s {
21   float x[3][2];
22   int y;
25 void main()
27   s a[2][4];
28   gl_Position = vec4(a.length() + a[0][0].x.length());