From: Bryan Cain Date: Sat, 7 Jan 2012 20:54:49 +0000 (-0600) Subject: glsl_to_tgsi: remove bad assertion X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c4529d10bed098b8d3d694f2a333f9afabbabbf9;p=mesa.git glsl_to_tgsi: remove bad assertion --- diff --git a/src/mesa/state_tracker/st_glsl_to_tgsi.cpp b/src/mesa/state_tracker/st_glsl_to_tgsi.cpp index 73d956ea12d..ddd5366a23b 100644 --- a/src/mesa/state_tracker/st_glsl_to_tgsi.cpp +++ b/src/mesa/state_tracker/st_glsl_to_tgsi.cpp @@ -1402,8 +1402,7 @@ glsl_to_tgsi_visitor::visit(ir_expression *ir) } break; case ir_unop_neg: - assert(result_dst.type == GLSL_TYPE_FLOAT || result_dst.type == GLSL_TYPE_INT); - if (result_dst.type == GLSL_TYPE_INT) + if (result_dst.type == GLSL_TYPE_INT || result_dst.type == GLSL_TYPE_UINT) emit(ir, TGSI_OPCODE_INEG, result_dst, op[0]); else { op[0].negate = ~op[0].negate;