summaryrefslogtreecommitdiff
path: root/src/gallium/tests/python/tests/regress/vertex-shader/vert-ex2.sh
diff options
context:
space:
mode:
Diffstat (limited to 'src/gallium/tests/python/tests/regress/vertex-shader/vert-ex2.sh')
-rw-r--r--src/gallium/tests/python/tests/regress/vertex-shader/vert-ex2.sh18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/gallium/tests/python/tests/regress/vertex-shader/vert-ex2.sh b/src/gallium/tests/python/tests/regress/vertex-shader/vert-ex2.sh
deleted file mode 100644
index e2383a6b5bd..00000000000
--- a/src/gallium/tests/python/tests/regress/vertex-shader/vert-ex2.sh
+++ /dev/null
@@ -1,18 +0,0 @@
-VERT
-
-DCL IN[0]
-DCL IN[1]
-DCL OUT[0], POSITION
-DCL OUT[1], COLOR
-
-DCL TEMP[0..1]
-
-IMM FLT32 { 0.3, 0.3, 0.3, 1.0 }
-
-EX2 TEMP[0], IN[0]
-EX2 TEMP[1], IN[1].yyyy
-MUL TEMP[0], TEMP[0], IMM[0]
-MOV OUT[0], IN[0]
-MUL OUT[1], TEMP[0], TEMP[1]
-
-END