Add more structure constructor tests.
[piglit/hramrach.git] / tests / glslparsertest / glsl2 / const-array-03.frag
blobab98c012edc1908b7f92513f5d4b6e48326437d4
1 /* PASS */
2 #version 120
3 void main()
5    const float a[] = float[](0.0, 1.0);
6    const float b[2] = float[2](0, 1);
8    if (a == b)
9       gl_FragColor = vec4(a[0], a[1], b[0], b[1]);
10    else
11       gl_FragColor = vec4(1.0, 0.0, 0.0, 1.0);