diff options
author | Kenneth Graunke <[email protected]> | 2010-07-08 23:28:50 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2010-07-14 15:50:28 -0700 |
commit | 908afd16d1f6b5283a2535e388b6dcb77e6504d2 (patch) | |
tree | 7b096a2bbce4b75381d2db0f5a6e9347788d99fc /src/glsl/ir_constant_expression.cpp | |
parent | 074720477ce9de3b4dafceffd7406bcebae1a3b9 (diff) |
ir_constant_expression: Add support for ir_unop_sin.
Diffstat (limited to 'src/glsl/ir_constant_expression.cpp')
-rw-r--r-- | src/glsl/ir_constant_expression.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/glsl/ir_constant_expression.cpp b/src/glsl/ir_constant_expression.cpp index 44a69854ad0..3d0a5e5fe08 100644 --- a/src/glsl/ir_constant_expression.cpp +++ b/src/glsl/ir_constant_expression.cpp @@ -245,6 +245,13 @@ ir_constant_visitor::visit(ir_expression *ir) } break; + case ir_unop_sin: + assert(op[0]->type->base_type == GLSL_TYPE_FLOAT); + for (unsigned c = 0; c < ir->operands[0]->type->components(); c++) { + data.f[c] = sinf(op[0]->value.f[c]); + } + break; + case ir_unop_neg: for (unsigned c = 0; c < ir->operands[0]->type->components(); c++) { switch (ir->type->base_type) { |