From 6fe7a0dc01887e39f028d8d400b98d199744c18f Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Fri, 12 Aug 2005 18:56:56 +0000 Subject: added FREXPF() macro (bug 4060) --- src/mesa/math/m_debug_util.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/mesa/math') diff --git a/src/mesa/math/m_debug_util.h b/src/mesa/math/m_debug_util.h index 765f54dfb5..1b7d742a80 100644 --- a/src/mesa/math/m_debug_util.h +++ b/src/mesa/math/m_debug_util.h @@ -286,9 +286,9 @@ static int significand_match( GLfloat a, GLfloat b ) return 0; } - frexp( a, &a_ex ); - frexp( b, &b_ex ); - frexp( d, &d_ex ); + FREXPF( a, &a_ex ); + FREXPF( b, &b_ex ); + FREXPF( d, &d_ex ); if ( a_ex < b_ex ) { return a_ex - d_ex; -- cgit v1.2.3