diff options
author | Michal Krol <michal@tungstengraphics.com> | 2008-03-12 15:29:39 +0100 |
---|---|---|
committer | Michal Krol <michal@tungstengraphics.com> | 2008-03-12 16:26:08 +0100 |
commit | e5b1a53c9f9ad247272415e0e21e83cfe00728a9 (patch) | |
tree | 38c2f0904704e2090c68dd5dac2c4c936eda2448 | |
parent | 8901a46a742b0cfecde0b981fc65160bf3e8d019 (diff) |
tgsi: Dump TXP opcode.
-rw-r--r-- | src/gallium/auxiliary/tgsi/util/tgsi_dump.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/gallium/auxiliary/tgsi/util/tgsi_dump.c b/src/gallium/auxiliary/tgsi/util/tgsi_dump.c index a393c65da6..1913d482f1 100644 --- a/src/gallium/auxiliary/tgsi/util/tgsi_dump.c +++ b/src/gallium/auxiliary/tgsi/util/tgsi_dump.c @@ -459,7 +459,8 @@ static const char *TGSI_OPCODES[] = "OPCODE_IFC", "OPCODE_BREAKC", "OPCODE_KIL", - "OPCODE_END" + "OPCODE_END", + "OPCODE_TXP" }; static const char *TGSI_OPCODES_SHORT[] = @@ -597,7 +598,8 @@ static const char *TGSI_OPCODES_SHORT[] = "IFC", "BREAKC", "KIL", - "END" + "END", + "TXP" }; static const char *TGSI_SATS[] = |