diff options
author | Bryan Cain <bryancain3@gmail.com> | 2012-01-07 14:54:49 -0600 |
---|---|---|
committer | Bryan Cain <bryancain3@gmail.com> | 2012-01-07 15:33:36 -0600 |
commit | c4529d10bed098b8d3d694f2a333f9afabbabbf9 (patch) | |
tree | 613c5649869749d12af586e2bda989936bcfc697 /src | |
parent | 282292f24c0668516db6225114461544b5d38004 (diff) |
glsl_to_tgsi: remove bad assertion
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/state_tracker/st_glsl_to_tgsi.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
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; |