summaryrefslogtreecommitdiff
path: root/src/mesa/math
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2005-08-12 18:56:56 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2005-08-12 18:56:56 +0000
commit6fe7a0dc01887e39f028d8d400b98d199744c18f (patch)
tree44e4cacd39f721c57e820dc8eeef4dbc5b9278cd /src/mesa/math
parentf2876d1ee3b878a07b12ddcb464633a44f7c29e7 (diff)
added FREXPF() macro (bug 4060)
Diffstat (limited to 'src/mesa/math')
-rw-r--r--src/mesa/math/m_debug_util.h6
1 files changed, 3 insertions, 3 deletions
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;