ext_gpu_shader4: add compiler tests for everything
[piglit.git] / tests / spec / glsl-1.20 / compiler / storage-qualfiers / static-write-attribute-01.vert
blobd4df59be89ac4ba8f7a1da412edeee39de3207ee
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 float f() {
15         x = 0.0;
16         return x;