diff options
author | Chris Robinson <[email protected]> | 2009-05-16 23:26:39 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2009-05-16 23:26:39 -0700 |
commit | 7e8501123a092a19b8153f7fdeecef2e0c5f0aa2 (patch) | |
tree | da5bd197753be2b257fa263707d144844622e707 /Alc/ALu.c | |
parent | c447eeb2c77d91d11750270aaed36a2354069095 (diff) |
Set some common macros in alu.h
Diffstat (limited to 'Alc/ALu.c')
-rw-r--r-- | Alc/ALu.c | 41 |
1 files changed, 0 insertions, 41 deletions
@@ -40,15 +40,6 @@ #include "bs2b.h" #include "alReverb.h" -#if defined (HAVE_FLOAT_H) -#include <float.h> -#endif - -#ifndef M_PI -#define M_PI 3.14159265358979323846 /* pi */ -#define M_PI_2 1.57079632679489661923 /* pi/2 */ -#endif - #if defined(HAVE_STDINT_H) #include <stdint.h> typedef int64_t ALint64; @@ -60,38 +51,6 @@ typedef long ALint64; typedef long long ALint64; #endif -#ifdef HAVE_SQRTF -#define aluSqrt(x) ((ALfloat)sqrtf((float)(x))) -#else -#define aluSqrt(x) ((ALfloat)sqrt((double)(x))) -#endif - -#ifdef HAVE_ACOSF -#define aluAcos(x) ((ALfloat)acosf((float)(x))) -#else -#define aluAcos(x) ((ALfloat)acos((double)(x))) -#endif - -#ifdef HAVE_ATANF -#define aluAtan(x) ((ALfloat)atanf((float)(x))) -#else -#define aluAtan(x) ((ALfloat)atan((double)(x))) -#endif - -#ifdef HAVE_FABSF -#define aluFabs(x) ((ALfloat)fabsf((float)(x))) -#else -#define aluFabs(x) ((ALfloat)fabs((double)(x))) -#endif - -// fixes for mingw32. -#if defined(max) && !defined(__max) -#define __max max -#endif -#if defined(min) && !defined(__min) -#define __min min -#endif - #define FRACTIONBITS 14 #define FRACTIONMASK ((1L<<FRACTIONBITS)-1) #define MAX_PITCH 65536 |