From: Brian Paul Date: Fri, 7 Nov 2008 00:19:54 +0000 (-0700) Subject: gallium: s/OPCODE_INT/OPCODE_TRUNC/ X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3225bc84932f08a52db7025367ae206a9d2f8fef;p=mesa.git gallium: s/OPCODE_INT/OPCODE_TRUNC/ --- diff --git a/src/mesa/state_tracker/st_mesa_to_tgsi.c b/src/mesa/state_tracker/st_mesa_to_tgsi.c index 50e638df46b..232efe5e81b 100644 --- a/src/mesa/state_tracker/st_mesa_to_tgsi.c +++ b/src/mesa/state_tracker/st_mesa_to_tgsi.c @@ -389,8 +389,8 @@ compile_instruction( fullinst->Instruction.Opcode = TGSI_OPCODE_IF; fullinst->InstructionExtLabel.Label = inst->BranchTarget + preamble_size; break; - case OPCODE_INT: - fullinst->Instruction.Opcode = TGSI_OPCODE_INT; + case OPCODE_TRUNC: + fullinst->Instruction.Opcode = TGSI_OPCODE_TRUNC; break; case OPCODE_KIL: /* conditional */