diff options
author | Brian Paul <[email protected]> | 2015-02-24 09:24:27 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2015-02-24 14:44:19 -0700 |
commit | bad154e677fb2ee3b2fb976ac3843dad08c87ea2 (patch) | |
tree | 9d4913437a6ec4d99225c97457b6b2e143df434a /src/mesa/main | |
parent | aeabf4ede52f8952d62387e3062e2fc09db1c755 (diff) |
mesa: remove unused exp2f, log2f, truncf wrappers
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/imports.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/mesa/main/imports.h b/src/mesa/main/imports.h index 105c7114f9e..674761171e8 100644 --- a/src/mesa/main/imports.h +++ b/src/mesa/main/imports.h @@ -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 */ |