mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 00:58:05 +02:00
ir_constant_expression: Add support for ir_unop_ceil.
This commit is contained in:
parent
323d909ab2
commit
c1ee30a145
1 changed files with 7 additions and 0 deletions
|
|
@ -213,6 +213,13 @@ ir_constant_visitor::visit(ir_expression *ir)
|
|||
}
|
||||
break;
|
||||
|
||||
case ir_unop_ceil:
|
||||
assert(op[0]->type->base_type == GLSL_TYPE_FLOAT);
|
||||
for (unsigned c = 0; c < ir->operands[0]->type->components(); c++) {
|
||||
data.f[c] = ceilf(op[0]->value.f[c]);
|
||||
}
|
||||
break;
|
||||
|
||||
case ir_unop_fract:
|
||||
for (unsigned c = 0; c < ir->operands[0]->type->components(); c++) {
|
||||
switch (ir->type->base_type) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue