diff options
author | Chris Robinson <chris.kcat@gmail.com> | 2018-12-25 11:09:41 -0800 |
---|---|---|
committer | Chris Robinson <chris.kcat@gmail.com> | 2018-12-25 11:09:41 -0800 |
commit | 208ea76922e8d69dc9ad93cbb0cf43634d9782a4 (patch) | |
tree | d65de40914324b72d72d569dc3dac20d5fc7dbe8 /Alc/hrtf.h | |
parent | 8336de665306e3d1669b9af675b3cf39f0bcbc4a (diff) |
Cleanup some includes
Diffstat (limited to 'Alc/hrtf.h')
-rw-r--r-- | Alc/hrtf.h | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -1,11 +1,11 @@ #ifndef ALC_HRTF_H #define ALC_HRTF_H +#include <string> + #include "AL/al.h" #include "AL/alc.h" -#include "alMain.h" -#include "atomic.h" #include "vector.h" #include "almalloc.h" @@ -36,6 +36,12 @@ struct HrtfEntry { const ALubyte (*delays)[2]; }; +struct EnumeratedHrtf { + std::string name; + + HrtfHandle *hrtf; +}; + struct HrtfState { alignas(16) ALfloat History[HRTF_HISTORY_LENGTH]; |