ext_gpu_shader4: add compiler tests for everything
[piglit.git] / tests / spec / glsl-1.20 / compiler / storage-qualfiers / static-write-attribute-02.vert
blobca30003b1726e62c86bf3f34cf7f5443ec517e7c
1 // [config]
2 // expect_result: fail
3 // glsl_version: 1.20
4 // [end config]
5 //
6 // From section 4.3.4 of the GLSL 1.20 spec:
7 //     Attribute variables are read-only as far as the vertex shader is
8 //     concerned.
10 #version 120
12 attribute float x;
14 void f(out float y) {
15     y = 0.0;
18 void g() {
19     f(x);