ir_constant_expression: Add support for ir_unop_sign.
This commit is contained in:
@@ -262,6 +262,24 @@ ir_constant_visitor::visit(ir_expression *ir)
|
||||
}
|
||||
break;
|
||||
|
||||
case ir_unop_sign:
|
||||
for (unsigned c = 0; c < ir->operands[0]->type->components(); c++) {
|
||||
switch (ir->type->base_type) {
|
||||
case GLSL_TYPE_UINT:
|
||||
data.u[c] = op[0]->value.i[c] > 0;
|
||||
break;
|
||||
case GLSL_TYPE_INT:
|
||||
data.i[c] = (op[0]->value.i[c] > 0) - (op[0]->value.i[c] < 0);
|
||||
break;
|
||||
case GLSL_TYPE_FLOAT:
|
||||
data.f[c] = float((op[0]->value.f[c] > 0)-(op[0]->value.f[c] < 0));
|
||||
break;
|
||||
default:
|
||||
assert(0);
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
||||
case ir_unop_rcp:
|
||||
assert(op[0]->type->base_type == GLSL_TYPE_FLOAT);
|
||||
for (unsigned c = 0; c < ir->operands[0]->type->components(); c++) {
|
||||
|
Reference in New Issue
Block a user