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-not-equal-implicit-size.vert
blob082a3579a2aef730c37bb3adc3c6b352becf26ca
1 /* [config]
2  * expect_result: fail
3  * glsl_version: 1.20
4  * [end config]
5  *
6  * From page 35 (page 41 of the PDF) of the GLSL 1.20 spec:
7  *
8  *     "The equality operators and assignment operator are only allowed if the
9  *     two operands are same size and type....Both array operands must be
10  *     explicitly sized. When using the equality operators ... two arrays are
11  *     equal if and only if all the elements are element-wise equal.
12  */
13 #version 120
15 uniform vec4 a[2];
16 uniform vec4 b[2];
18 void main()
20   vec4 c[];
22   // Implicitly size c to match a and b.
23   c[0] = b[0];
24   c[1] = b[2];
26   gl_Position = vec4(a != c);