diff options
author | Brian Paul <brianp@vmware.com> | 2010-11-15 18:50:58 -0700 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2010-11-15 18:50:58 -0700 |
commit | c1928c7f1065876345d00477eac5558f4cf85158 (patch) | |
tree | 8bf1a62e4d0b3cfdc27190bbc04a308b141e2c67 /src/mesa/main | |
parent | 88f482a8391b17587fa2af07f6f40dc1f7394fa7 (diff) |
mesa: add more work-arounds for acoshf(), asinhf(), atahf()
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/imports.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/main/imports.h b/src/mesa/main/imports.h index 30fc152389..5d4ef9bbab 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) |