summaryrefslogtreecommitdiff
path: root/progs/gallium/python/tests/regress/vertex-shader/vert-lrp.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-lrp.sh
parent0a3e3621752be5b054739ce606cad4f77cb65049 (diff)
progs/gallium/python: New home for python statetracker scripts.
Diffstat (limited to 'progs/gallium/python/tests/regress/vertex-shader/vert-lrp.sh')
-rw-r--r--progs/gallium/python/tests/regress/vertex-shader/vert-lrp.sh14
1 files changed, 14 insertions, 0 deletions
diff --git a/progs/gallium/python/tests/regress/vertex-shader/vert-lrp.sh b/progs/gallium/python/tests/regress/vertex-shader/vert-lrp.sh
new file mode 100644
index 0000000000..4bb5f3ec3f
--- /dev/null
+++ b/progs/gallium/python/tests/regress/vertex-shader/vert-lrp.sh
@@ -0,0 +1,14 @@
+VERT
+
+DCL IN[0], POSITION
+DCL IN[1], COLOR
+DCL OUT[0], POSITION
+DCL OUT[1], COLOR
+
+DCL TEMP[0]
+
+ABS TEMP[0], IN[0]
+MOV OUT[0], IN[0]
+LRP OUT[1], TEMP[0], IN[1].xxxx, IN[1].yyyy
+
+END