mesa: remove unused exp2f, log2f, truncf wrappers
authorBrian Paul <brianp@vmware.com>
Tue, 24 Feb 2015 16:24:27 +0000 (09:24 -0700)
committerBrian Paul <brianp@vmware.com>
Tue, 24 Feb 2015 21:44:19 +0000 (14:44 -0700)
Reviewed-by: Matt Turner <mattst88@gmail.com>
src/mesa/main/imports.h

index 105c7114f9e26ce27dd15792716226b233acfc1f..674761171e833e7aafad8895db016d64a94b1898 100644 (file)
@@ -99,25 +99,15 @@ typedef union { GLfloat f; GLint i; GLuint u; } fi_type;
    && (!defined(_MSC_VER) || (_MSC_VER < 1400))
 #define ceilf(f) ((float) ceil(f))
 #define expf(f) ((float) exp(f))
-#define exp2f(f) ((float) exp2(f))
 #define floorf(f) ((float) floor(f))
 #define logf(f) ((float) log(f))
 
-#ifdef ANDROID
-#define log2f(f) (logf(f) * (float) (1.0 / M_LN2))
-#else
-#define log2f(f) ((float) log2(f))
-#endif
-
 #define powf(x,y) ((float) pow(x,y))
 #define sqrtf(f) ((float) sqrt(f))
 #endif
 
 #if defined(_MSC_VER)
 #if _MSC_VER < 1800  /* Not req'd on VS2013 and above */
-static inline float truncf(float x) { return x < 0.0f ? ceilf(x) : floorf(x); }
-static inline float exp2f(float x) { return powf(2.0f, x); }
-static inline float log2f(float x) { return logf(x) * 1.442695041f; }
 static inline int isblank(int ch) { return ch == ' ' || ch == '\t'; }
 #define strtoll(p, e, b) _strtoi64(p, e, b)
 #endif /* _MSC_VER < 1800 */