summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2010-11-15 18:50:58 -0700
committerBrian Paul <brianp@vmware.com>2010-11-15 18:50:58 -0700
commitc1928c7f1065876345d00477eac5558f4cf85158 (patch)
tree8bf1a62e4d0b3cfdc27190bbc04a308b141e2c67
parent88f482a8391b17587fa2af07f6f40dc1f7394fa7 (diff)
mesa: add more work-arounds for acoshf(), asinhf(), atahf()
-rw-r--r--src/mesa/main/imports.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/main/imports.h b/src/mesa/main/imports.h
index 30fc152389d..5d4ef9bbaba 100644
--- a/src/mesa/main/imports.h
+++ b/src/mesa/main/imports.h
@@ -141,6 +141,9 @@ typedef union { GLfloat f; GLint i; } fi_type;
#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)