ext_gpu_shader4: add compiler tests for everything
[piglit.git] / tests / spec / glsl-1.10 / compiler / storage-qualfiers / static-write-normal.vert
blobee8cc04983f349c6d7c245fa95a1a1f086140f12
1 // [config]
2 // expect_result: fail
3 // glsl_version: 1.10
4 // [end config]
5 //
6 // From section 4.3.4 of the GLSL 1.10 spec:
7 //     Attribute variables are read-only as far as the vertex shader is
8 //     concerned.
9 //
10 // From section 7.3 of the GLSL 1.10 spec:
11 //     The following attribute names are built into the OpenGL vertex
12 //     language and can be used from within a vertex shader to access
13 //     the current values of attributes declared by OpenGL.
14 //         ...
15 //     attribute vec4 gl_Normal;
18 #version 110
20 void f() {
21         gl_Normal = vec4(0.0);