summaryrefslogtreecommitdiff
path: root/src/gallium/tests/python/tests/regress/vertex-shader/vert-max.sh
diff options
context:
space:
mode:
Diffstat (limited to 'src/gallium/tests/python/tests/regress/vertex-shader/vert-max.sh')
-rw-r--r--src/gallium/tests/python/tests/regress/vertex-shader/vert-max.sh13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/gallium/tests/python/tests/regress/vertex-shader/vert-max.sh b/src/gallium/tests/python/tests/regress/vertex-shader/vert-max.sh
deleted file mode 100644
index db84a499214..00000000000
--- a/src/gallium/tests/python/tests/regress/vertex-shader/vert-max.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-VERT
-
-DCL IN[0]
-DCL IN[1]
-DCL OUT[0], POSITION
-DCL OUT[1], COLOR
-
-IMM FLT32 { 0.5, 0.5, 0.5, 0.0 }
-
-MOV OUT[0], IN[0]
-MAX OUT[1], IN[1], IMM[0]
-
-END