i965/fs: Implement ir_u2f opcode.
authorKenneth Graunke <kenneth@whitecape.org>
Fri, 2 Sep 2011 17:50:40 +0000 (10:50 -0700)
committerKenneth Graunke <kenneth@whitecape.org>
Wed, 7 Sep 2011 17:43:09 +0000 (10:43 -0700)
Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Eric Anholt <eric@anholt.net>
src/mesa/drivers/dri/i965/brw_fs_visitor.cpp

index fc9d0e7..ba7ee2f 100644 (file)
@@ -360,6 +360,7 @@ fs_visitor::visit(ir_expression *ir)
       this->result = op[0];
       break;
    case ir_unop_i2f:
+   case ir_unop_u2f:
    case ir_unop_b2f:
    case ir_unop_b2i:
    case ir_unop_f2i:
@@ -443,7 +444,6 @@ fs_visitor::visit(ir_expression *ir)
       inst = emit(BRW_OPCODE_OR, this->result, op[0], op[1]);
       break;
 
-   case ir_unop_u2f:
    case ir_binop_lshift:
    case ir_binop_rshift:
       assert(!"GLSL 1.30 features unsupported");