diff options
author | Chris Robinson <[email protected]> | 2018-12-25 11:09:41 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2018-12-25 11:09:41 -0800 |
commit | 208ea76922e8d69dc9ad93cbb0cf43634d9782a4 (patch) | |
tree | d65de40914324b72d72d569dc3dac20d5fc7dbe8 /OpenAL32 | |
parent | 8336de665306e3d1669b9af675b3cf39f0bcbc4a (diff) |
Cleanup some includes
Diffstat (limited to 'OpenAL32')
-rw-r--r-- | OpenAL32/Include/alMain.h | 14 | ||||
-rw-r--r-- | OpenAL32/Include/alu.h | 1 |
2 files changed, 2 insertions, 13 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index 2ffea8aa..bca4c49e 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -27,8 +27,6 @@ #include "AL/alext.h" #include "inprogext.h" -#include "logging.h" -#include "polymorphism.h" #include "atomic.h" #include "vector.h" #include "almalloc.h" @@ -77,10 +75,6 @@ constexpr inline size_t countof(const T(&)[N]) noexcept #endif #endif -#ifndef UINT64_MAX -#define UINT64_MAX U64(18446744073709551615) -#endif - #ifndef UNUSED #if defined(__cplusplus) #define UNUSED(x) @@ -238,6 +232,7 @@ static const union { struct HrtfEntry; struct HrtfHandle; +struct EnumeratedHrtf; struct DirectHrtfState; struct FrontStablizer; struct Compressor; @@ -597,13 +592,6 @@ struct FilterSubList { }; -struct EnumeratedHrtf { - std::string name; - - HrtfHandle *hrtf; -}; - - /* Maximum delay in samples for speaker distance compensation. */ #define MAX_DELAY_LENGTH 1024 diff --git a/OpenAL32/Include/alu.h b/OpenAL32/Include/alu.h index 4620aeb6..934d6866 100644 --- a/OpenAL32/Include/alu.h +++ b/OpenAL32/Include/alu.h @@ -17,6 +17,7 @@ #include "alBuffer.h" #include "hrtf.h" +#include "logging.h" #include "math_defs.h" #include "filters/biquad.h" #include "filters/nfc.h" |