ext_gpu_shader4: add compiler tests for everything
[piglit.git] / tests / spec / glsl-1.20 / compiler / structure-and-array-operations / array-assign-implicit-conversion-int-bool.vert
blob18fd45cbe15982d3abd75a3691b2e99a96b6c341
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 int a[2];
15 void main()
17   bool b[2];
18   b = a;
19   gl_Position = vec4(b[0], b[0], b[1], b[1]);