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-resize-after-access-too-small.vert
blobebee5e6a05555c07d9b10851e5fa293d004bebf3
1 /* [config]
2  * expect_result: fail
3  * glsl_version: 1.20
4  * [end config]
5  */
6 #version 120
8 float x[];
10 void foo() { x[3] = 2.; }
12 // The array must be at least 4 elements because of the previous
13 // access to x[3].
14 float x[] = float[2](1., 2.);
16 void main()
18         foo();
19         gl_Position = vec4(x[0]);