summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/r300/r300_tgsi_to_rc.c
diff options
context:
space:
mode:
authorCorbin Simpson <MostAwesomeDude@gmail.com>2010-02-09 13:50:38 -0800
committerCorbin Simpson <MostAwesomeDude@gmail.com>2010-02-09 13:50:38 -0800
commit5a27a77d009b44dcd2eb35c3b66bd88cf5005d24 (patch)
tree69ecb2cd9ba2ba78f8297a6d1d06d1909f5f1db0 /src/gallium/drivers/r300/r300_tgsi_to_rc.c
parent1ebc5681545786c247aacec8198a0fccef93b5d8 (diff)
r300g: Be ever-so-slightly more useful on bad shaders.
Diffstat (limited to 'src/gallium/drivers/r300/r300_tgsi_to_rc.c')
-rw-r--r--src/gallium/drivers/r300/r300_tgsi_to_rc.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gallium/drivers/r300/r300_tgsi_to_rc.c b/src/gallium/drivers/r300/r300_tgsi_to_rc.c
index 941ec17016..a88a9477b4 100644
--- a/src/gallium/drivers/r300/r300_tgsi_to_rc.c
+++ b/src/gallium/drivers/r300/r300_tgsi_to_rc.c
@@ -29,6 +29,7 @@
#include "tgsi/tgsi_scan.h"
#include "tgsi/tgsi_util.h"
+#include "util/u_debug.h"
static unsigned translate_opcode(unsigned opcode)
{
@@ -144,7 +145,8 @@ static unsigned translate_opcode(unsigned opcode)
case TGSI_OPCODE_KIL: return RC_OPCODE_KIL;
}
- fprintf(stderr, "Unknown opcode: %i\n", opcode);
+ debug_printf("r300: Unknown TGSI/RC opcode: %i\n", opcode);
+ assert(0);
return RC_OPCODE_ILLEGAL_OPCODE;
}