remove obsolete TXP, add some sanity checks

This commit is contained in:
Brian 2007-12-19 08:51:17 -07:00
parent cedf6892e7
commit 127ab73b38

View file

@ -453,7 +453,6 @@ static const char *TGSI_OPCODES[] =
"OPCODE_CALLNZ",
"OPCODE_IFC",
"OPCODE_BREAKC",
"OPCODE_TXP",
"OPCODE_KIL",
"OPCODE_END"
};
@ -592,7 +591,6 @@ static const char *TGSI_OPCODES_SHORT[] =
"CALLNZ",
"IFC",
"BREAKC",
"TXP",
"KIL",
"END"
};
@ -1518,6 +1516,15 @@ dump_gen(
tgsi_parse_free( &parse );
}
static void
sanity_checks(void)
{
assert(strcmp(TGSI_OPCODES[TGSI_OPCODE_END], "OPCODE_END") == 0);
assert(strcmp(TGSI_OPCODES_SHORT[TGSI_OPCODE_END], "END") == 0);
}
void
tgsi_dump(
const struct tgsi_token *tokens,
@ -1525,6 +1532,8 @@ tgsi_dump(
{
struct file_dump dump;
sanity_checks();
dump.base.write = _file_dump_write;
#if 0
{