diff options
author | Tom Gall <tom.gall@linaro.org> | 2013-01-07 14:44:50 -0600 |
---|---|---|
committer | Tom Gall <tom.gall@linaro.org> | 2013-04-22 11:17:19 -0500 |
commit | 58fd33dc479f0fcd64bbb751f3d104109945e375 (patch) | |
tree | 057d013d929e429c57efa220986ddccfcb2f20d4 /tests/spec/glsl-es-1.00/compiler/storage-qualifiers/static-write-attribute-02.vert | |
parent | 93c7d0f7b67677e9b29b2ecdc573912b0ba01af6 (diff) | |
download | piglit-58fd33dc479f0fcd64bbb751f3d104109945e375.tar.gz |
gles2: glslparser tests ported to glsl es 1.00
Diffstat (limited to 'tests/spec/glsl-es-1.00/compiler/storage-qualifiers/static-write-attribute-02.vert')
-rw-r--r-- | tests/spec/glsl-es-1.00/compiler/storage-qualifiers/static-write-attribute-02.vert | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/spec/glsl-es-1.00/compiler/storage-qualifiers/static-write-attribute-02.vert b/tests/spec/glsl-es-1.00/compiler/storage-qualifiers/static-write-attribute-02.vert new file mode 100644 index 00000000..1182d7ce --- /dev/null +++ b/tests/spec/glsl-es-1.00/compiler/storage-qualifiers/static-write-attribute-02.vert @@ -0,0 +1,19 @@ +// [config] +// expect_result: fail +// glsl_version: 1.20 +// glsles_version: 1.00 +// [end config] +// +// From section 4.3.4 of the GLSL 1.20 spec: +// Attribute variables are read-only as far as the vertex shader is +// concerned. + +attribute float x; + +void f(out float y) { + y = 0.0; +} + +void g() { + f(x); +} |