diff options
author | Brian Paul <[email protected]> | 2015-02-24 08:57:17 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2015-02-24 14:44:19 -0700 |
commit | e25f7772cacef8673318a7bfb33b151c5bc5d94c (patch) | |
tree | 468fa89973099522ae546d6aab626c92de495744 /src/mesa/main/imports.h | |
parent | e6eddbb96a9a690a865df8b0b9cfa2f644824b51 (diff) |
mesa: replace FREXPF, LDEXPF with frexpf, ldexpf
Start getting rid of some imports.h macros. Use the c99 functions instead.
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/mesa/main/imports.h')
-rw-r--r-- | src/mesa/main/imports.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/mesa/main/imports.h b/src/mesa/main/imports.h index 0fcba4fb986..cb871481c1f 100644 --- a/src/mesa/main/imports.h +++ b/src/mesa/main/imports.h @@ -209,8 +209,6 @@ static inline GLfloat LOG2(GLfloat x) *** FABSF: absolute value of float *** LOGF: the natural logarithm (base e) of the value *** EXPF: raise e to the value - *** LDEXPF: multiply value by an integral power of two - *** FREXPF: extract mantissa and exponent from value ***/ #if defined(__gnu_linux__) /* C99 functions */ @@ -219,16 +217,12 @@ static inline GLfloat LOG2(GLfloat x) #define FABSF(x) fabsf(x) #define LOGF(x) logf(x) #define EXPF(x) expf(x) -#define LDEXPF(x,y) ldexpf(x,y) -#define FREXPF(x,y) frexpf(x,y) #else #define CEILF(x) ((GLfloat) ceil(x)) #define FLOORF(x) ((GLfloat) floor(x)) #define FABSF(x) ((GLfloat) fabs(x)) #define LOGF(x) ((GLfloat) log(x)) #define EXPF(x) ((GLfloat) exp(x)) -#define LDEXPF(x,y) ((GLfloat) ldexp(x,y)) -#define FREXPF(x,y) ((GLfloat) frexp(x,y)) #endif |