ext_gpu_shader4: add compiler tests for everything
[piglit.git] / tests / spec / glsl-1.20 / compiler / structure-and-array-operations / array-of-array-function-parameter-definition.vert
blob05e7cbc34c3c4ecf5cab492214e5729d8b87f0e1
1 /* [config]
2  * expect_result: fail
3  * glsl_version: 1.20
4  * [end config]
5  *
6  * From page 19 (page 25 of the PDF) of the GLSL 1.20 spec:
7  *
8  *     "Only one-dimensional arrays may be declared."
9  */
10 #version 120
12 attribute vec4 vert;
14 void foo(vec4 [2] x[2])
16   gl_Position = vert;
19 void main()
21   gl_Position = vert;