From: Ian Romanick Date: Fri, 26 Mar 2010 23:11:48 +0000 (-0700) Subject: Add unary operator to convert unsigned integer to float X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6c86ea8adc095abeef7b3cd63d3321185542bf36;p=mesa.git Add unary operator to convert unsigned integer to float --- diff --git a/ir.h b/ir.h index 63ae0bc3b69..04ac0b3e013 100644 --- a/ir.h +++ b/ir.h @@ -229,6 +229,7 @@ enum ir_expression_operation { ir_unop_log, ir_unop_f2i, /**< Float-to-integer conversion. */ ir_unop_i2f, /**< Integer-to-float conversion. */ + ir_unop_u2f, /**< Unsigned-to-float conversion. */ /** * \name Unary floating-point rounding operations.