glsl: Add trunc() to ir_builder.

This commit is contained in:
Matt Turner
2015-01-30 13:50:28 -08:00
parent d91390634f
commit a5455ab1ca
2 changed files with 6 additions and 0 deletions
+5
View File
@@ -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);