deleted file mode 100644
@@ -1,17 +0,0 @@
-// [config]
-// expect_result: fail
-// glsl_version: 1.00
-// [end config]
-//
-// From section 4.3.3 of the GLSL 1.00 spec:
-// Attribute variables are read-only as far as the vertex shader is
-// concerned.
-
-#version 100
-
-attribute float x;
-
-float f() {
- x = 0.0;
- return x;
-}
deleted file mode 100644
@@ -1,20 +0,0 @@
-// [config]
-// expect_result: fail
-// glsl_version: 1.00
-// [end config]
-//
-// From section 4.3.3 of the GLSL 1.00 spec:
-// Attribute variables are read-only as far as the vertex shader is
-// concerned.
-
-#version 100
-
-attribute float x;
-
-void f(out float y) {
- y = 0.0;
-}
-
-void g() {
- f(x);
-}
deleted file mode 100644
@@ -1,15 +0,0 @@
-// [config]
-// expect_result: fail
-// glsl_version: 1.00
-// [end config]
-//
-// From section 4.3.5 of the GLSL 1.00 spec:
-// A fragment shader can not write to a varying variable.
-
-#version 100
-
-varying float x;
-
-void g() {
- x = 0.0;
-}
deleted file mode 100644
@@ -1,19 +0,0 @@
-// [config]
-// expect_result: fail
-// glsl_version: 1.00
-// [end config]
-//
-// From section 4.3.5 of the GLSL 1.00 spec:
-// A fragment shader can not write to a varying variable.
-
-#version 100
-
-varying float x;
-
-void f(out float y) {
- y = 0.0;
-}
-
-void g() {
- f(x);
-}
new file mode 100644
@@ -0,0 +1,17 @@
+// [config]
+// expect_result: fail
+// glsl_version: 1.00
+// [end config]
+//
+// From section 4.3.3 of the GLSL 1.00 spec:
+// Attribute variables are read-only as far as the vertex shader is
+// concerned.
+
+#version 100
+
+attribute float x;
+
+float f() {
+ x = 0.0;
+ return x;
+}
new file mode 100644
@@ -0,0 +1,20 @@
+// [config]
+// expect_result: fail
+// glsl_version: 1.00
+// [end config]
+//
+// From section 4.3.3 of the GLSL 1.00 spec:
+// Attribute variables are read-only as far as the vertex shader is
+// concerned.
+
+#version 100
+
+attribute float x;
+
+void f(out float y) {
+ y = 0.0;
+}
+
+void g() {
+ f(x);
+}
new file mode 100644
@@ -0,0 +1,15 @@
+// [config]
+// expect_result: fail
+// glsl_version: 1.00
+// [end config]
+//
+// From section 4.3.5 of the GLSL 1.00 spec:
+// A fragment shader can not write to a varying variable.
+
+#version 100
+
+varying float x;
+
+void g() {
+ x = 0.0;
+}
new file mode 100644
@@ -0,0 +1,19 @@
+// [config]
+// expect_result: fail
+// glsl_version: 1.00
+// [end config]
+//
+// From section 4.3.5 of the GLSL 1.00 spec:
+// A fragment shader can not write to a varying variable.
+
+#version 100
+
+varying float x;
+
+void f(out float y) {
+ y = 0.0;
+}
+
+void g() {
+ f(x);
+}
Move contents of tests/spec/glsl-1.00/compiler/storage-qualfiers to tests/spec/glsl-es-1.00/compiler/storage-qualfiers Signed-off-by: Tom Gall <tom.gall@linaro.org> --- .../static-write-attribute-01.vert | 17 ----------------- .../static-write-attribute-02.vert | 20 -------------------- .../storage-qualfiers/static-write-varying-01.frag | 15 --------------- .../storage-qualfiers/static-write-varying-02.frag | 19 ------------------- .../static-write-attribute-01.vert | 17 +++++++++++++++++ .../static-write-attribute-02.vert | 20 ++++++++++++++++++++ .../storage-qualfiers/static-write-varying-01.frag | 15 +++++++++++++++ .../storage-qualfiers/static-write-varying-02.frag | 19 +++++++++++++++++++ 8 files changed, 71 insertions(+), 71 deletions(-) delete mode 100644 tests/spec/glsl-1.00/compiler/storage-qualfiers/static-write-attribute-01.vert delete mode 100644 tests/spec/glsl-1.00/compiler/storage-qualfiers/static-write-attribute-02.vert delete mode 100644 tests/spec/glsl-1.00/compiler/storage-qualfiers/static-write-varying-01.frag delete mode 100644 tests/spec/glsl-1.00/compiler/storage-qualfiers/static-write-varying-02.frag create mode 100644 tests/spec/glsl-es-1.00/compiler/storage-qualfiers/static-write-attribute-01.vert create mode 100644 tests/spec/glsl-es-1.00/compiler/storage-qualfiers/static-write-attribute-02.vert create mode 100644 tests/spec/glsl-es-1.00/compiler/storage-qualfiers/static-write-varying-01.frag create mode 100644 tests/spec/glsl-es-1.00/compiler/storage-qualfiers/static-write-varying-02.frag