diff options
author | Chris Robinson <[email protected]> | 2019-07-28 21:29:59 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-07-28 21:29:59 -0700 |
commit | d38d2553649555714bfe20f8ca72614974993d47 (patch) | |
tree | 2eefae41a5578056b610d9db0cf7293b6949e2b5 /OpenAL32/alAuxEffectSlot.cpp | |
parent | 83432a7e5c7f565a08c41bb104ae25286c5fc82b (diff) |
More include cleanups
Diffstat (limited to 'OpenAL32/alAuxEffectSlot.cpp')
-rw-r--r-- | OpenAL32/alAuxEffectSlot.cpp | 24 |
1 files changed, 15 insertions, 9 deletions
diff --git a/OpenAL32/alAuxEffectSlot.cpp b/OpenAL32/alAuxEffectSlot.cpp index cc2893c3..42966bf2 100644 --- a/OpenAL32/alAuxEffectSlot.cpp +++ b/OpenAL32/alAuxEffectSlot.cpp @@ -20,25 +20,31 @@ #include "config.h" -#include <cstdlib> -#include <cmath> +#include "alAuxEffectSlot.h" -#include <thread> #include <algorithm> +#include <cstdint> +#include <iterator> +#include <memory> +#include <mutex> +#include <thread> #include "AL/al.h" #include "AL/alc.h" +#include "alEffect.h" +#include "alError.h" #include "alcmain.h" #include "alcontext.h" -#include "alAuxEffectSlot.h" -#include "alError.h" -#include "alListener.h" -#include "alSource.h" - -#include "fpu_modes.h" #include "alexcpt.h" #include "almalloc.h" +#include "alnumeric.h" +#include "alspan.h" +#include "alu.h" +#include "fpu_modes.h" +#include "inprogext.h" +#include "logging.h" +#include "opthelpers.h" namespace { |