tgsi: Use debug_printf().

This commit is contained in:
Michal Krol 2008-03-14 21:44:06 +01:00
parent 2b8f31a6da
commit f23207ca57
1 changed files with 2 additions and 2 deletions

View File

@ -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));