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-ctor.vert
blob8cba7bbae55708117873d8399cd540ef99b052e9
1 /* [config]
2  * expect_result: pass
3  * glsl_version: 1.20
4  * [end config]
5  *
6  * From page 20 (page 26 of the PDF) of the GLSL 1.20 spec:
7  *
8  *     "Arrays can have initializers formed from array constructors:"
9  */
10 #version 120
12 vec4 a[2] = vec4[2](vec4(0.0), vec4(2.0));
13 vec4 b[2] = vec4[ ](vec4(0.5), vec4(2.0));
14 vec4 c[ ] = vec4[ ](vec4(1.0), vec4(2.0));
16 void main() { gl_Position = a[0] + b[0] + c[0]; }