From: Bryan Cain Date: Sat, 7 Jan 2012 22:19:39 +0000 (-0600) Subject: glsl_to_tgsi: emit IABS for absolute value of integers X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=73b26e4d12e5fa07bb96b4a30f41bd3b583776aa;p=mesa.git glsl_to_tgsi: emit IABS for absolute value of integers --- diff --git a/src/mesa/state_tracker/st_glsl_to_tgsi.cpp b/src/mesa/state_tracker/st_glsl_to_tgsi.cpp index 539701173f8..3b8e2fe3742 100644 --- a/src/mesa/state_tracker/st_glsl_to_tgsi.cpp +++ b/src/mesa/state_tracker/st_glsl_to_tgsi.cpp @@ -1410,8 +1410,10 @@ glsl_to_tgsi_visitor::visit(ir_expression *ir) } break; case ir_unop_abs: - assert(result_dst.type == GLSL_TYPE_FLOAT); - emit(ir, TGSI_OPCODE_ABS, result_dst, op[0]); + if (result_dst.type == GLSL_TYPE_INT || result_dst.type == GLSL_TYPE_UINT) + emit(ir, TGSI_OPCODE_IABS, result_dst, op[0]); + else + emit(ir, TGSI_OPCODE_ABS, result_dst, op[0]); break; case ir_unop_sign: emit(ir, TGSI_OPCODE_SSG, result_dst, op[0]);