Add more structure constructor tests.
[piglit/hramrach.git] / tests / glslparsertest / glsl2 / array-12.vert
blob35bd81cd7418ff88f6dde8f2248ecdd66fa4f8b5
1 #version 120
2 /* PASS
3  * The array is implicitly sized by the whole-array assignment.
4  */
6 void main()
8   vec4 a[];
10   a = vec4 [2] (vec4(1.0), vec4(2.0));
12   gl_Position = gl_Vertex;