summaryrefslogtreecommitdiff
path: root/src/gallium/tests
diff options
context:
space:
mode:
authorAlex Corscadden <alexc@alexc-dev1.prom.eng.vmware.com>2010-09-08 16:59:03 -0700
committerJosé Fonseca <jfonseca@vmware.com>2010-09-11 13:01:20 +0100
commit96c6e7e73e5d6df929e0c0189a98f6df30ff59f2 (patch)
tree25f9f5d25c5d30c4bd346bb4545d6c0bcac43957 /src/gallium/tests
parentafd328afa8fdad58d22c214c01bcbf82614801c5 (diff)
Add a test for the KIL opcode
This is a simple test for the KIL opcode. It should render a 6 sided figure with a colored interior.
Diffstat (limited to 'src/gallium/tests')
-rw-r--r--src/gallium/tests/python/tests/regress/fragment-shader/frag-kil.sh18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/gallium/tests/python/tests/regress/fragment-shader/frag-kil.sh b/src/gallium/tests/python/tests/regress/fragment-shader/frag-kil.sh
new file mode 100644
index 0000000000..583b0ca4a4
--- /dev/null
+++ b/src/gallium/tests/python/tests/regress/fragment-shader/frag-kil.sh
@@ -0,0 +1,18 @@
+FRAG
+
+DCL IN[0], COLOR, LINEAR
+DCL OUT[0], COLOR
+
+DCL TEMP[0]
+
+IMM FLT32 { 0.6, 0.6, 0.6, 0.0 }
+IMM FLT32 { 0.01, 0.0, 0.0, 0.0 }
+IMM FLT32 { 1.0, 0.0, 0.0, 0.0 }
+
+SLT TEMP[0], IN[0], IMM[0]
+MUL OUT[0], IN[0], TEMP[0]
+MOV OUT[0].w, IMM[2].xxxx
+SUB TEMP[0], TEMP[0], IMM[1].xxxy
+KIL TEMP[0]
+
+END