diff options
author | Kenneth Graunke <[email protected]> | 2012-06-07 00:11:28 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2012-06-07 00:17:21 -0700 |
commit | 05790746df077183d6c3caf87ca2d276a60302a8 (patch) | |
tree | 8707f2063589ca9960d1b1ac0f0f2455cc07edcc /src/mesa/drivers/dri/i965/brw_fs_visitor.cpp | |
parent | a83be8b6d7acbc5cb276182506c6d45210d9e951 (diff) |
i965: Enable the GL_ARB_shader_bit_encode extension.
Signed-off-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_fs_visitor.cpp')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_fs_visitor.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs_visitor.cpp b/src/mesa/drivers/dri/i965/brw_fs_visitor.cpp index 2634b0862a0..12745f23102 100644 --- a/src/mesa/drivers/dri/i965/brw_fs_visitor.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs_visitor.cpp @@ -445,11 +445,18 @@ fs_visitor::visit(ir_expression *ir) emit_math(SHADER_OPCODE_RSQ, this->result, op[0]); break; + case ir_unop_bitcast_i2f: + case ir_unop_bitcast_u2f: + op[0].type = BRW_REGISTER_TYPE_F; + this->result = op[0]; + break; case ir_unop_i2u: + case ir_unop_bitcast_f2u: op[0].type = BRW_REGISTER_TYPE_UD; this->result = op[0]; break; case ir_unop_u2i: + case ir_unop_bitcast_f2i: op[0].type = BRW_REGISTER_TYPE_D; this->result = op[0]; break; |