summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/imports.h
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2015-02-24 09:20:12 -0700
committerBrian Paul <brianp@vmware.com>2015-02-24 14:44:19 -0700
commitaeabf4ede52f8952d62387e3062e2fc09db1c755 (patch)
treeecbd6b88158666eb0c184a1c62d43d1207c8fdb5 /src/mesa/main/imports.h
parentbd7f7aac56d3703f3d0fd55cd20f86f6c431b030 (diff)
downloadexternal_mesa3d-aeabf4ede52f8952d62387e3062e2fc09db1c755.zip
external_mesa3d-aeabf4ede52f8952d62387e3062e2fc09db1c755.tar.gz
external_mesa3d-aeabf4ede52f8952d62387e3062e2fc09db1c755.tar.bz2
mesa: remove unused acosf, asinf, atan2f, etc. macros
Not used anywhere. If any of these are needed, they should be added to c99_math.h Reviewed-by: Matt Turner <mattst88@gmail.com>
Diffstat (limited to 'src/mesa/main/imports.h')
-rw-r--r--src/mesa/main/imports.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/mesa/main/imports.h b/src/mesa/main/imports.h
index 3384583..105c711 100644
--- a/src/mesa/main/imports.h
+++ b/src/mesa/main/imports.h
@@ -97,13 +97,7 @@ typedef union { GLfloat f; GLint i; GLuint u; } fi_type;
#if (!defined(_XOPEN_SOURCE) || (_XOPEN_SOURCE < 600)) && !defined(_ISOC99_SOURCE) \
&& (!defined(__STDC_VERSION__) || (__STDC_VERSION__ < 199901L)) \
&& (!defined(_MSC_VER) || (_MSC_VER < 1400))
-#define acosf(f) ((float) acos(f))
-#define asinf(f) ((float) asin(f))
-#define atan2f(x,y) ((float) atan2(x,y))
-#define atanf(f) ((float) atan(f))
#define ceilf(f) ((float) ceil(f))
-#define cosf(f) ((float) cos(f))
-#define coshf(f) ((float) cosh(f))
#define expf(f) ((float) exp(f))
#define exp2f(f) ((float) exp2(f))
#define floorf(f) ((float) floor(f))
@@ -116,14 +110,7 @@ typedef union { GLfloat f; GLint i; GLuint u; } fi_type;
#endif
#define powf(x,y) ((float) pow(x,y))
-#define sinf(f) ((float) sin(f))
-#define sinhf(f) ((float) sinh(f))
#define sqrtf(f) ((float) sqrt(f))
-#define tanf(f) ((float) tan(f))
-#define tanhf(f) ((float) tanh(f))
-#define acoshf(f) ((float) acosh(f))
-#define asinhf(f) ((float) asinh(f))
-#define atanhf(f) ((float) atanh(f))
#endif
#if defined(_MSC_VER)
@@ -131,9 +118,6 @@ typedef union { GLfloat f; GLint i; GLuint u; } fi_type;
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 float asinhf(float x) { return logf(x + sqrtf(x * x + 1.0f)); }
-static inline float acoshf(float x) { return logf(x + sqrtf(x * x - 1.0f)); }
-static inline float atanhf(float x) { return (logf(1.0f + x) - logf(1.0f - x)) / 2.0f; }
static inline int isblank(int ch) { return ch == ' ' || ch == '\t'; }
#define strtoll(p, e, b) _strtoi64(p, e, b)
#endif /* _MSC_VER < 1800 */