mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-03-08 05:20:30 +01:00
gallium: better debug messages
This commit is contained in:
parent
e8c0162fa0
commit
31358282d4
1 changed files with 4 additions and 4 deletions
|
|
@ -2268,7 +2268,7 @@ tgsi_emit_sse2(
|
|||
&parse.FullToken.FullInstruction );
|
||||
|
||||
if (!ok) {
|
||||
debug_printf("failed to translate tgsi opcode %d\n",
|
||||
debug_printf("failed to translate tgsi opcode %d to SSE\n",
|
||||
parse.FullToken.FullInstruction.Instruction.Opcode );
|
||||
}
|
||||
break;
|
||||
|
|
@ -2276,7 +2276,7 @@ tgsi_emit_sse2(
|
|||
case TGSI_TOKEN_TYPE_IMMEDIATE:
|
||||
/* XXX implement this */
|
||||
ok = 0;
|
||||
debug_printf("failed to emit immediate value\n");
|
||||
debug_printf("failed to emit immediate value to SSE\n");
|
||||
break;
|
||||
|
||||
default:
|
||||
|
|
@ -2358,7 +2358,7 @@ tgsi_emit_sse2_fs(
|
|||
&parse.FullToken.FullInstruction );
|
||||
|
||||
if (!ok) {
|
||||
debug_printf("failed to translate tgsi opcode %d\n",
|
||||
debug_printf("failed to translate tgsi opcode %d to SSE\n",
|
||||
parse.FullToken.FullInstruction.Instruction.Opcode );
|
||||
}
|
||||
break;
|
||||
|
|
@ -2366,7 +2366,7 @@ tgsi_emit_sse2_fs(
|
|||
case TGSI_TOKEN_TYPE_IMMEDIATE:
|
||||
/* XXX implement this */
|
||||
ok = 0;
|
||||
debug_printf("failed to emit immediate value\n");
|
||||
debug_printf("failed to emit immediate value to SSE\n");
|
||||
break;
|
||||
|
||||
default:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue