Mesa (master): Add a test for the KIL opcode

Jose Fonseca jrfonseca at kemper.freedesktop.org
Sat Sep 11 12:47:46 UTC 2010


Module: Mesa
Branch: master
Commit: 96c6e7e73e5d6df929e0c0189a98f6df30ff59f2
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=96c6e7e73e5d6df929e0c0189a98f6df30ff59f2

Author: Alex Corscadden <alexc at alexc-dev1.prom.eng.vmware.com>
Date:   Wed Sep  8 16:59:03 2010 -0700

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.

---

 .../tests/regress/fragment-shader/frag-kil.sh      |   18 ++++++++++++++++++
 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 0000000..583b0ca
--- /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




More information about the mesa-commit mailing list