mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-30 14:20:11 +01:00
glsl: ir_explog_to_explog2 is no more
Since 63684a9a ("glsl: Combine many instruction lowering passes
into one.", Thu Nov 18 2010), we no longer have anything called
ir_explog_to_explog2. So it's only confusing to have those
references there.
Update with the appropriate method, so people can grep for it in
the current tree if they encounter it.
Signed-off-by: Erik Faye-Lund <kusmabite@gmail.com>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com>
This commit is contained in:
parent
99d8b933fd
commit
86a9ddfef7
2 changed files with 6 additions and 2 deletions
|
|
@ -1069,8 +1069,10 @@ ir_to_mesa_visitor::visit(ir_expression *ir)
|
|||
emit_scalar(ir, OPCODE_EX2, result_dst, op[0]);
|
||||
break;
|
||||
case ir_unop_exp:
|
||||
assert(!"not reached: should be handled by exp_to_exp2");
|
||||
break;
|
||||
case ir_unop_log:
|
||||
assert(!"not reached: should be handled by ir_explog_to_explog2");
|
||||
assert(!"not reached: should be handled by log_to_log2");
|
||||
break;
|
||||
case ir_unop_log2:
|
||||
emit_scalar(ir, OPCODE_LG2, result_dst, op[0]);
|
||||
|
|
|
|||
|
|
@ -1661,8 +1661,10 @@ glsl_to_tgsi_visitor::visit_expression(ir_expression* ir, st_src_reg *op)
|
|||
emit_scalar(ir, TGSI_OPCODE_EX2, result_dst, op[0]);
|
||||
break;
|
||||
case ir_unop_exp:
|
||||
assert(!"not reached: should be handled by exp_to_exp2");
|
||||
break;
|
||||
case ir_unop_log:
|
||||
assert(!"not reached: should be handled by ir_explog_to_explog2");
|
||||
assert(!"not reached: should be handled by log_to_log2");
|
||||
break;
|
||||
case ir_unop_log2:
|
||||
emit_scalar(ir, TGSI_OPCODE_LG2, result_dst, op[0]);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue