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-assign-implicit-conversion-float-bool.vert
blob40b589934db76da3d3ac00c07d9125fac8da8e58
1 /* [config]
2  * expect_result: fail
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  *     "There are no implicit array or structure conversions. For example, an
9  *     array of int cannot be implicitly converted to an array of float."
10  */
11 #version 120
13 uniform float a[2];
15 void main()
17   bool b[2];
18   b = a;
19   gl_Position = vec4(b[0], b[0], b[1], b[1]);