6 * From page 20 (page 26 of the PDF) of the GLSL 1.20 spec:
8 * "Arrays can have initializers formed from array constructors:"
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]; }