From c1928c7f1065876345d00477eac5558f4cf85158 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Mon, 15 Nov 2010 18:50:58 -0700 Subject: mesa: add more work-arounds for acoshf(), asinhf(), atahf() --- src/mesa/main/imports.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/mesa/main') 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) -- cgit v1.2.3