summaryrefslogtreecommitdiff
path: root/progs/gallium/python/tests/regress/vertex-shader/vert-mul.sh
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2010-02-14 11:15:19 +0000
committerJosé Fonseca <jfonseca@vmware.com>2010-02-14 11:16:41 +0000
commit50812e633fa433937c7ba885fa334f44ec0bad58 (patch)
treefae5850bae8bdb6ab0ebd466f8f61b1a51d73d93 /progs/gallium/python/tests/regress/vertex-shader/vert-mul.sh
parent0a3e3621752be5b054739ce606cad4f77cb65049 (diff)
progs/gallium/python: New home for python statetracker scripts.
Diffstat (limited to 'progs/gallium/python/tests/regress/vertex-shader/vert-mul.sh')
-rw-r--r--progs/gallium/python/tests/regress/vertex-shader/vert-mul.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/progs/gallium/python/tests/regress/vertex-shader/vert-mul.sh b/progs/gallium/python/tests/regress/vertex-shader/vert-mul.sh
new file mode 100644
index 0000000000..d34f6cd6e3
--- /dev/null
+++ b/progs/gallium/python/tests/regress/vertex-shader/vert-mul.sh
@@ -0,0 +1,13 @@
+VERT
+
+DCL IN[0], POSITION
+DCL IN[1], COLOR
+DCL OUT[0], POSITION
+DCL OUT[1], COLOR
+
+IMM FLT32 { 0.6, 0.6, 1.0, 1.0 }
+
+MUL OUT[0], IN[0], IMM[0]
+MOV OUT[1], IN[1]
+
+END