From: Brian Date: Fri, 26 Oct 2007 19:02:40 +0000 (-0600) Subject: convert OPCODE_END -> TGSI_OPCODE_RET X-Git-Tag: 062012170305~17580^2~390^2~3701 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=78c1f8b2decf168d183c52e7b414adb29dd18988;p=profile%2Fivi%2Fmesa.git convert OPCODE_END -> TGSI_OPCODE_RET --- diff --git a/src/mesa/pipe/tgsi/mesa/mesa_to_tgsi.c b/src/mesa/pipe/tgsi/mesa/mesa_to_tgsi.c index 4fac617..6ce7ab9 100644 --- a/src/mesa/pipe/tgsi/mesa/mesa_to_tgsi.c +++ b/src/mesa/pipe/tgsi/mesa/mesa_to_tgsi.c @@ -466,7 +466,7 @@ compile_instruction( fulldst->DstRegister.WriteMask &= TGSI_WRITEMASK_XYZ; break; case OPCODE_END: - fullinst->Instruction.Opcode = TGSI_OPCODE_END; + fullinst->Instruction.Opcode = TGSI_OPCODE_RET; break; default: assert( 0 );