ext_gpu_shader4: add compiler tests for everything
[piglit.git] / tests / spec / glsl-1.20 / compiler / structure-and-array-operations / array-function-parameter-unsized.vert
blob373a98f37451034167e3f7d2e7184f3230674d98
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  *     "Arrays declared as formal parameters in a function declaration
9  *     must specify a size."
10  */
11 #version 120
13 vec4 a_function(vec4 [] p);
15 uniform vec4 [6] an_array;
17 void main()
19   gl_Position = a_function(an_array);