From: Brian Paul Date: Tue, 16 Nov 2010 01:50:58 +0000 (-0700) Subject: mesa: add more work-arounds for acoshf(), asinhf(), atahf() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c1928c7f1065876345d00477eac5558f4cf85158;p=mesa.git mesa: add more work-arounds for acoshf(), asinhf(), atahf() --- 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)