mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 11:00:11 +01:00
ir_constant_expression: Add support for ir_unop_log2.
This uses a C99 function.
This commit is contained in:
parent
aca01edc83
commit
cb63929df4
1 changed files with 7 additions and 0 deletions
|
|
@ -337,6 +337,13 @@ ir_constant_visitor::visit(ir_expression *ir)
|
|||
}
|
||||
break;
|
||||
|
||||
case ir_unop_log2:
|
||||
assert(op[0]->type->base_type == GLSL_TYPE_FLOAT);
|
||||
for (unsigned c = 0; c < ir->operands[0]->type->components(); c++) {
|
||||
data.f[c] = log2f(op[0]->value.f[c]);
|
||||
}
|
||||
break;
|
||||
|
||||
case ir_unop_dFdx:
|
||||
case ir_unop_dFdy:
|
||||
assert(op[0]->type->base_type == GLSL_TYPE_FLOAT);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue