From: Alex Corscadden Date: Wed, 8 Sep 2010 23:59:03 +0000 (-0700) Subject: Add a test for the KIL opcode X-Git-Tag: android-x86-2.2~1270 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=96c6e7e73e5d6df929e0c0189a98f6df30ff59f2;p=android-x86%2Fexternal-mesa.git 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. --- 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 00000000000..583b0ca4a4a --- /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