summaryrefslogtreecommitdiff
path: root/src/glsl/tests/constructor-07.glsl
diff options
context:
space:
mode:
Diffstat (limited to 'src/glsl/tests/constructor-07.glsl')
-rw-r--r--src/glsl/tests/constructor-07.glsl13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/glsl/tests/constructor-07.glsl b/src/glsl/tests/constructor-07.glsl
deleted file mode 100644
index 92322506ed..0000000000
--- a/src/glsl/tests/constructor-07.glsl
+++ /dev/null
@@ -1,13 +0,0 @@
-/* PASS */
-
-uniform ivec2 a;
-uniform ivec2 b;
-
-void main()
-{
- mat2 c;
-
- c = mat2(a, b);
-
- gl_Position = gl_Vertex;
-}