diff options
Diffstat (limited to 'OpenAL32/Include/alu.h')
-rw-r--r-- | OpenAL32/Include/alu.h | 43 |
1 files changed, 17 insertions, 26 deletions
diff --git a/OpenAL32/Include/alu.h b/OpenAL32/Include/alu.h index 8abfe15f..841e5c03 100644 --- a/OpenAL32/Include/alu.h +++ b/OpenAL32/Include/alu.h @@ -1,31 +1,29 @@ #ifndef _ALU_H_ #define _ALU_H_ -#include <limits.h> -#include <math.h> -#ifdef HAVE_FLOAT_H -#include <float.h> -#endif -#ifdef HAVE_IEEEFP_H -#include <ieeefp.h> -#endif - -#include <cmath> #include <array> +#include <atomic> +#include <cmath> +#include <cstddef> -#include "alMain.h" -#include "alBuffer.h" +#include "AL/al.h" +#include "AL/alc.h" +#include "AL/alext.h" -#include "hrtf.h" -#include "logging.h" -#include "math_defs.h" +#include "alBuffer.h" +#include "alMain.h" +#include "almalloc.h" +#include "alspan.h" +#include "ambidefs.h" #include "filters/biquad.h" -#include "filters/splitter.h" #include "filters/nfc.h" +#include "filters/splitter.h" +#include "hrtf.h" +#include "logging.h" -#include "almalloc.h" -#include "alnumeric.h" -#include "alspan.h" +struct ALbufferlistitem; +struct ALeffectslot; +struct BSincTable; enum class DistanceModel; @@ -34,13 +32,6 @@ enum class DistanceModel; #define MAX_SENDS 16 -struct BSincTable; -struct ALsource; -struct ALbufferlistitem; -struct ALvoice; -struct ALeffectslot; - - #define DITHER_RNG_SEED 22222 |