arb_framebuffer_object: add missing MSAA alpha-to-coverage and alpha-to-one tests
[piglit.git] / tests / spec / glsl-1.20 / compiler / structure-and-array-operations / array-redeclaration-initializer.vert
blob9ad1ec4b689ce4eb7d7cfc514d19ef6c2fb3aaa6
1 /* [config]
2  * expect_result: pass
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  *     "It is legal to declare an array without a size and then later
9  *     re-declare the same name as an array of the same type and specify a
10  *     size."
11  */
12 #version 120
14 float a_function(float[3]);
16 void main()
18   float [] an_array;
20   an_array[0] = 0.0;
21   an_array[1] = 1.0;
22   an_array[2] = 2.0;
24   float [] an_array = float[](2.0, 1.0, 0.0);
26   gl_Position = vec4(a_function(an_array));