From 8c29a1d84d738cfddf16d5f013876ee2cca96a81 Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Thu, 6 May 2010 13:20:44 -0700 Subject: ir_to_mesa: Add exp/log expression operations. --- ir_to_mesa.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'ir_to_mesa.cpp') diff --git a/ir_to_mesa.cpp b/ir_to_mesa.cpp index bc9ad252d0..3fed157779 100644 --- a/ir_to_mesa.cpp +++ b/ir_to_mesa.cpp @@ -319,6 +319,18 @@ ir_to_mesa_visitor::visit(ir_expression *ir) this->result = NULL; switch (ir->operation) { + case ir_unop_exp: + this->result = this->create_tree(MB_TERM_exp_vec4, ir, op[0], NULL); + break; + case ir_unop_exp2: + this->result = this->create_tree(MB_TERM_exp2_vec4, ir, op[0], NULL); + break; + case ir_unop_log: + this->result = this->create_tree(MB_TERM_log_vec4, ir, op[0], NULL); + break; + case ir_unop_log2: + this->result = this->create_tree(MB_TERM_log2_vec4, ir, op[0], NULL); + break; case ir_binop_add: this->result = this->create_tree(MB_TERM_add_vec4_vec4, ir, op[0], op[1]); break; -- cgit v1.2.3