aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/hrtf.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2014-06-20 16:43:14 -0700
committerChris Robinson <[email protected]>2014-06-20 16:43:14 -0700
commitbe903d67b87a38616d4b7a901c3bf93441b1cb91 (patch)
tree6db2e9234f790b541637d07007ee17b81b59d094 /Alc/hrtf.h
parentfb25a70f9533a8ada104f1d84b1ed9d1eb69ccc0 (diff)
Don't pass the device to HRTF methods
Diffstat (limited to 'Alc/hrtf.h')
-rw-r--r--Alc/hrtf.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/hrtf.h b/Alc/hrtf.h
index d9022d02..488c81d9 100644
--- a/Alc/hrtf.h
+++ b/Alc/hrtf.h
@@ -15,8 +15,8 @@ struct Hrtf;
#define HRTFDELAY_FRACONE (1<<HRTFDELAY_BITS)
#define HRTFDELAY_MASK (HRTFDELAY_FRACONE-1)
-const struct Hrtf *GetHrtf(ALCdevice *device);
-ALCboolean FindHrtfFormat(const ALCdevice *device, enum DevFmtChannels *chans, ALCuint *srate);
+const struct Hrtf *GetHrtf(enum DevFmtChannels chans, ALCuint srate);
+ALCboolean FindHrtfFormat(enum DevFmtChannels *chans, ALCuint *srate);
void FreeHrtfs(void);