mesa: add more work-arounds for acoshf(), asinhf(), atahf()

This commit is contained in:
Brian Paul
2010-11-15 18:50:58 -07:00
parent 88f482a839
commit c1928c7f10
+3
View File
@@ -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)