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-mismatched-size.vert
blob8c3bb41f2cee1d829c3d19805bced6ffe7b818be
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[3]; // Note the differing size
18 void main()
20   gl_Position = vec4(a != b);