diff options
author | Ian Romanick <[email protected]> | 2010-09-01 21:12:10 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2010-09-09 15:39:51 -0700 |
commit | 3a5ce85cfa4914711e56c8cf831699242618928e (patch) | |
tree | 524740df447147a9269d02dea9c599f2c38534af /src/mesa/program/ir_to_mesa.cpp | |
parent | 6dcca5a308efd7a85caa52f970ed020926c487e9 (diff) |
glsl2: Add ir_unop_noise
Diffstat (limited to 'src/mesa/program/ir_to_mesa.cpp')
-rw-r--r-- | src/mesa/program/ir_to_mesa.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/mesa/program/ir_to_mesa.cpp b/src/mesa/program/ir_to_mesa.cpp index caa906abfad..7307c8506c0 100644 --- a/src/mesa/program/ir_to_mesa.cpp +++ b/src/mesa/program/ir_to_mesa.cpp @@ -1154,6 +1154,16 @@ ir_to_mesa_visitor::visit(ir_expression *ir) ir_to_mesa_emit_op1(ir, OPCODE_DDY, result_dst, op[0]); break; + case ir_unop_noise: { + const enum prog_opcode opcode = + prog_opcode(OPCODE_NOISE1 + + (ir->operands[0]->type->vector_elements) - 1); + assert((opcode >= OPCODE_NOISE1) && (opcode <= OPCODE_NOISE4)); + + ir_to_mesa_emit_op1(ir, opcode, result_dst, op[0]); + break; + } + case ir_binop_add: ir_to_mesa_emit_op2(ir, OPCODE_ADD, result_dst, op[0], op[1]); break; |