diff options
author | Matt Turner <[email protected]> | 2013-02-19 14:15:16 -0800 |
---|---|---|
committer | Matt Turner <[email protected]> | 2013-02-28 13:19:00 -0800 |
commit | c001985cbf299f283d64289e1ba5f2a236880ebb (patch) | |
tree | b9ffff6af503aa6b79e64665f03776bc2469aea1 /src/mesa/program | |
parent | 428503fcdf4e002dfd2754ccb74e61403eae910f (diff) |
ir_to_mesa: Translate ir_triop_lrp to OPCODE_LRP.
Reviewed-by: Eric Anholt <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/program')
-rw-r--r-- | src/mesa/program/ir_to_mesa.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/mesa/program/ir_to_mesa.cpp b/src/mesa/program/ir_to_mesa.cpp index 30305d2e77d..54323232570 100644 --- a/src/mesa/program/ir_to_mesa.cpp +++ b/src/mesa/program/ir_to_mesa.cpp @@ -1479,7 +1479,10 @@ ir_to_mesa_visitor::visit(ir_expression *ir) break; case ir_triop_lrp: - assert(!"ir_triop_lrp should have been lowered."); + /* ir_triop_lrp operands are (x, y, a) while + * OPCODE_LRP operands are (a, y, x) to match ARB_fragment_program. + */ + emit(ir, OPCODE_LRP, result_dst, op[2], op[1], op[0]); break; case ir_quadop_vector: @@ -2997,7 +3000,7 @@ _mesa_ir_link_shader(struct gl_context *ctx, struct gl_shader_program *prog) /* Lowering */ do_mat_op_to_vec(ir); lower_instructions(ir, (MOD_TO_FRACT | DIV_TO_MUL_RCP | EXP_TO_EXP2 - | LOG_TO_LOG2 | INT_DIV_TO_MUL_RCP | LRP_TO_ARITH + | LOG_TO_LOG2 | INT_DIV_TO_MUL_RCP | ((options->EmitNoPow) ? POW_TO_EXP2 : 0))); progress = do_lower_jumps(ir, true, true, options->EmitNoMainReturn, options->EmitNoCont, options->EmitNoLoops) || progress; |