From 982d36667dcb53236cfd9668b56f7e91d49e9f0a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jos=C3=A9=20Fonseca?= Date: Thu, 1 Apr 2010 15:11:05 +0100 Subject: [PATCH] util: Use u_math.h's union fi instead of redefining it. --- src/gallium/auxiliary/util/u_half.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/gallium/auxiliary/util/u_half.h b/src/gallium/auxiliary/util/u_half.h index 464d43df8a0..54e7c7458ec 100644 --- a/src/gallium/auxiliary/util/u_half.h +++ b/src/gallium/auxiliary/util/u_half.h @@ -2,6 +2,7 @@ #define U_HALF_H #include "pipe/p_compiler.h" +#include "u_math.h" extern uint32_t util_half_to_float_mantissa_table[2048]; extern uint32_t util_half_to_float_exponent_table[64]; @@ -31,8 +32,8 @@ util_half_to_floatui(half h) static INLINE float util_half_to_float(half h) { - union {float f; uint32_t v;} r; - r.v = util_half_to_floatui(h); + union fi r; + r.ui = util_half_to_floatui(h); return r.f; } @@ -47,9 +48,9 @@ util_floatui_to_half(uint32_t v) static INLINE half util_float_to_half(float f) { - union {float f; uint32_t v;} i; + union fi i; i.f = f; - return util_floatui_to_half(i.v); + return util_floatui_to_half(i.ui); } #endif /* U_HALF_H */ -- 2.30.2