aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/hrtf.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2015-09-20 04:10:21 -0700
committerChris Robinson <[email protected]>2015-09-20 08:28:34 -0700
commit5f5eebc4df536daef7f68d02f7a0c751c8dc0f79 (patch)
treed86069c47e3b05437b97601102a2104a96ac7b6e /Alc/hrtf.h
parent46bbf95bae605ac8be1ca163e337b33928627960 (diff)
Allow the hrtf_tables option to be device-specific
Diffstat (limited to 'Alc/hrtf.h')
-rw-r--r--Alc/hrtf.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/Alc/hrtf.h b/Alc/hrtf.h
index ba72e45e..fed75173 100644
--- a/Alc/hrtf.h
+++ b/Alc/hrtf.h
@@ -4,6 +4,8 @@
#include "AL/al.h"
#include "AL/alc.h"
+#include "alstring.h"
+
enum DevFmtChannels;
struct Hrtf;
@@ -15,8 +17,8 @@ struct Hrtf;
#define HRTFDELAY_FRACONE (1<<HRTFDELAY_BITS)
#define HRTFDELAY_MASK (HRTFDELAY_FRACONE-1)
-const struct Hrtf *GetHrtf(enum DevFmtChannels chans, ALCuint srate);
-ALCboolean FindHrtfFormat(enum DevFmtChannels *chans, ALCuint *srate);
+const struct Hrtf *GetHrtf(const_al_string devname, enum DevFmtChannels chans, ALCuint srate);
+ALCboolean FindHrtfFormat(const_al_string devname, enum DevFmtChannels *chans, ALCuint *srate);
void FreeHrtfs(void);