summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary
diff options
context:
space:
mode:
authorMichal Krol <michal@tungstengraphics.com>2008-03-14 21:44:06 +0100
committerMichal Krol <michal@tungstengraphics.com>2008-03-14 21:44:06 +0100
commitf23207ca57095b620febaf723815cc3eef3e87bd (patch)
tree571decc3452a400fd94bbc97696920c3cdbf1da7 /src/gallium/auxiliary
parent2b8f31a6daf6a52086a3454a5dfd1f8bac046804 (diff)
tgsi: Use debug_printf().
Diffstat (limited to 'src/gallium/auxiliary')
-rw-r--r--src/gallium/auxiliary/tgsi/exec/tgsi_exec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/auxiliary/tgsi/exec/tgsi_exec.c b/src/gallium/auxiliary/tgsi/exec/tgsi_exec.c
index ad871d2bdf..78e7dec569 100644
--- a/src/gallium/auxiliary/tgsi/exec/tgsi_exec.c
+++ b/src/gallium/auxiliary/tgsi/exec/tgsi_exec.c
@@ -1516,7 +1516,7 @@ exec_instruction(
break;
case TGSI_OPCODE_EXP:
- printf("TGSI: EXP opcode not implemented\n");
+ debug_printf("TGSI: EXP opcode not implemented\n");
/* from ARB_v_p:
tmp = ScalarLoad(op0);
result.x = 2^floor(tmp);
@@ -1535,7 +1535,7 @@ exec_instruction(
break;
case TGSI_OPCODE_LOG:
- printf("TGSI: LOG opcode not implemented\n");
+ debug_printf("TGSI: LOG opcode not implemented\n");
/* from ARB_v_p:
tmp = fabs(ScalarLoad(op0));
result.x = floor(log2(tmp));