summaryrefslogtreecommitdiff
path: root/progs/gallium/python/tests/regress/vertex-shader/vert-dp3.sh
diff options
context:
space:
mode:
Diffstat (limited to 'progs/gallium/python/tests/regress/vertex-shader/vert-dp3.sh')
-rw-r--r--progs/gallium/python/tests/regress/vertex-shader/vert-dp3.sh16
1 files changed, 0 insertions, 16 deletions
diff --git a/progs/gallium/python/tests/regress/vertex-shader/vert-dp3.sh b/progs/gallium/python/tests/regress/vertex-shader/vert-dp3.sh
deleted file mode 100644
index caff622fe6..0000000000
--- a/progs/gallium/python/tests/regress/vertex-shader/vert-dp3.sh
+++ /dev/null
@@ -1,16 +0,0 @@
-VERT
-
-DCL IN[0], POSITION
-DCL IN[1], COLOR
-DCL OUT[0], POSITION
-DCL OUT[1], COLOR
-DCL TEMP[0]
-
-IMM FLT32 { 0.0, 0.0, 1.0, 1.0 }
-
-DP3 TEMP[0].xy, IN[0], IN[0]
-MOV TEMP[0].zw, IMM[0]
-MUL OUT[0], IN[0], TEMP[0]
-MOV OUT[1], IN[1]
-
-END