summaryrefslogtreecommitdiff
path: root/src/glsl/tests/array-10.glsl
diff options
context:
space:
mode:
Diffstat (limited to 'src/glsl/tests/array-10.glsl')
-rw-r--r--src/glsl/tests/array-10.glsl11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/glsl/tests/array-10.glsl b/src/glsl/tests/array-10.glsl
deleted file mode 100644
index 019aa21150..0000000000
--- a/src/glsl/tests/array-10.glsl
+++ /dev/null
@@ -1,11 +0,0 @@
-/* FAIL - array constructors forbidden in GLSL 1.10
- *
- * This can also generate an error because the 'vec4[]' style syntax is
- * illegal in GLSL 1.10.
- */
-void main()
-{
- vec4 a[2] = vec4 [2] (vec4(1.0), vec4(2.0));
-
- gl_Position = gl_Vertex;
-}