summaryrefslogtreecommitdiffstats
path: root/progs/gallium/python/tests/regress/vertex-shader/vert-lg2.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-lg2.sh
parent0a3e3621752be5b054739ce606cad4f77cb65049 (diff)
downloadexternal_mesa3d-50812e633fa433937c7ba885fa334f44ec0bad58.zip
external_mesa3d-50812e633fa433937c7ba885fa334f44ec0bad58.tar.gz
external_mesa3d-50812e633fa433937c7ba885fa334f44ec0bad58.tar.bz2
progs/gallium/python: New home for python statetracker scripts.
Diffstat (limited to 'progs/gallium/python/tests/regress/vertex-shader/vert-lg2.sh')
-rw-r--r--progs/gallium/python/tests/regress/vertex-shader/vert-lg2.sh18
1 files changed, 18 insertions, 0 deletions
diff --git a/progs/gallium/python/tests/regress/vertex-shader/vert-lg2.sh b/progs/gallium/python/tests/regress/vertex-shader/vert-lg2.sh
new file mode 100644
index 0000000..5cf16fd
--- /dev/null
+++ b/progs/gallium/python/tests/regress/vertex-shader/vert-lg2.sh
@@ -0,0 +1,18 @@
+VERT
+
+DCL IN[0], POSITION
+DCL IN[1], COLOR
+DCL OUT[0], POSITION
+DCL OUT[1], COLOR
+
+DCL TEMP[0]
+
+IMM FLT32 { 1.0, 0.0, 0.0, 0.0 }
+IMM FLT32 { 0.5, 0.0, 0.0, 0.0 }
+
+ADD TEMP[0], IN[0], IMM[0]
+LG2 TEMP[0].x, TEMP[0].xxxx
+ADD OUT[0], TEMP[0], IMM[1]
+MOV OUT[1], IN[1]
+
+END