summaryrefslogtreecommitdiff
path: root/src/mesa/pipe/tgsi/exec/tgsi_dump.c
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2007-10-02 17:07:30 -0600
committerBrian <brian.paul@tungstengraphics.com>2007-10-02 17:07:30 -0600
commit066ccec49485f0b6d314ef555e4b2a68f68c3804 (patch)
treedcefe22584be732027a39fc6d059aca190b867b3 /src/mesa/pipe/tgsi/exec/tgsi_dump.c
parentca34912bf7e57a01b180a3bb3b6e36331f442558 (diff)
Separate TGSI_OPCODE_KIL and TGSI_OPCODE_KILP (predicated).
These correspond to the NV and ARB-style fragment program KIL instructions. The former is really supposed to examine the NV condition codes but Mesa's GLSL compiler always emits unconditional KIL instructions.
Diffstat (limited to 'src/mesa/pipe/tgsi/exec/tgsi_dump.c')
-rwxr-xr-xsrc/mesa/pipe/tgsi/exec/tgsi_dump.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mesa/pipe/tgsi/exec/tgsi_dump.c b/src/mesa/pipe/tgsi/exec/tgsi_dump.c
index 0b273cd6e5..c179659aee 100755
--- a/src/mesa/pipe/tgsi/exec/tgsi_dump.c
+++ b/src/mesa/pipe/tgsi/exec/tgsi_dump.c
@@ -270,7 +270,7 @@ static const char *TGSI_OPCODES[] =
"OPCODE_COS",
"OPCODE_DDX",
"OPCODE_DDY",
- "OPCODE_KIL",
+ "OPCODE_KILP",
"OPCODE_PK2H",
"OPCODE_PK2US",
"OPCODE_PK4B",
@@ -364,6 +364,7 @@ static const char *TGSI_OPCODES[] =
"OPCODE_IFC",
"OPCODE_BREAKC",
"OPCODE_TXP",
+ "OPCODE_KIL",
"OPCODE_END"
};
@@ -408,7 +409,7 @@ static const char *TGSI_OPCODES_SHORT[] =
"COS",
"DDX",
"DDY",
- "KIL",
+ "KILP",
"PK2H",
"PK2US",
"PK4B",
@@ -502,6 +503,7 @@ static const char *TGSI_OPCODES_SHORT[] =
"IFC",
"BREAKC",
"TXP",
+ "KIL",
"END"
};