ir_constant_expression: Add support for ir_unop_trunc.
This uses a C99 function.
This commit is contained in:
@@ -206,6 +206,13 @@ ir_constant_visitor::visit(ir_expression *ir)
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case ir_unop_trunc:
|
||||||
|
assert(op[0]->type->base_type == GLSL_TYPE_FLOAT);
|
||||||
|
for (unsigned c = 0; c < ir->operands[0]->type->components(); c++) {
|
||||||
|
data.f[c] = truncf(op[0]->value.f[c]);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
case ir_unop_fract:
|
case ir_unop_fract:
|
||||||
for (unsigned c = 0; c < ir->operands[0]->type->components(); c++) {
|
for (unsigned c = 0; c < ir->operands[0]->type->components(); c++) {
|
||||||
switch (ir->type->base_type) {
|
switch (ir->type->base_type) {
|
||||||
|
Reference in New Issue
Block a user