aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/hrtf.h
diff options
context:
space:
mode:
authorChris Robinson <chris.kcat@gmail.com>2018-12-25 11:09:41 -0800
committerChris Robinson <chris.kcat@gmail.com>2018-12-25 11:09:41 -0800
commit208ea76922e8d69dc9ad93cbb0cf43634d9782a4 (patch)
treed65de40914324b72d72d569dc3dac20d5fc7dbe8 /Alc/hrtf.h
parent8336de665306e3d1669b9af675b3cf39f0bcbc4a (diff)
Cleanup some includes
Diffstat (limited to 'Alc/hrtf.h')
-rw-r--r--Alc/hrtf.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/Alc/hrtf.h b/Alc/hrtf.h
index 15c16723..7954ac11 100644
--- a/Alc/hrtf.h
+++ b/Alc/hrtf.h
@@ -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];