ir_constant_expression: Add support for ir_unop_floor.

This commit is contained in:
Kenneth Graunke
2010-07-08 23:23:23 -07:00
parent c1ee30a145
commit 074720477c

View File

@@ -220,6 +220,13 @@ ir_constant_visitor::visit(ir_expression *ir)
}
break;
case ir_unop_floor:
assert(op[0]->type->base_type == GLSL_TYPE_FLOAT);
for (unsigned c = 0; c < ir->operands[0]->type->components(); c++) {
data.f[c] = floorf(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) {