glsl: Add trunc() to ir_builder.
This commit is contained in:
@@ -246,6 +246,11 @@ ir_expression *borrow(operand a, operand b)
|
||||
return expr(ir_binop_borrow, a, b);
|
||||
}
|
||||
|
||||
ir_expression *trunc(operand a)
|
||||
{
|
||||
return expr(ir_unop_trunc, a);
|
||||
}
|
||||
|
||||
ir_expression *round_even(operand a)
|
||||
{
|
||||
return expr(ir_unop_round_even, a);
|
||||
|
@@ -137,6 +137,7 @@ ir_expression *imul_high(operand a, operand b);
|
||||
ir_expression *div(operand a, operand b);
|
||||
ir_expression *carry(operand a, operand b);
|
||||
ir_expression *borrow(operand a, operand b);
|
||||
ir_expression *trunc(operand a);
|
||||
ir_expression *round_even(operand a);
|
||||
ir_expression *dot(operand a, operand b);
|
||||
ir_expression *clamp(operand a, operand b, operand c);
|
||||
|
Reference in New Issue
Block a user