diff options
author | Chris Robinson <[email protected]> | 2011-06-25 21:39:36 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-06-25 21:39:36 -0700 |
commit | 212b187447c6b095de3629448d3a2270c09cf119 (patch) | |
tree | 61ea80069c4588c7ea054899042d714890aeb14c /OpenAL32/Include | |
parent | ac9a6e891fb26c8c41774be6f90c7a96f85d1942 (diff) |
Add a function to check if a device is compatible with the Hrtf filter
Diffstat (limited to 'OpenAL32/Include')
-rw-r--r-- | OpenAL32/Include/alMain.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index 0c95177f..3264d5ed 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -502,6 +502,7 @@ ALboolean IsValidChannels(ALenum type); #define HRIR_LENGTH (1<<HRIR_BITS) #define HRIR_MASK (HRIR_LENGTH-1) void InitHrtf(void); +ALCboolean IsHrtfCompatible(ALCdevice *device); void GetHrtfCoeffs(ALfloat elevation, ALfloat angle, const ALshort **left, const ALshort **right, ALuint *ldelay, ALuint *rdelay); void al_print(const char *fname, unsigned int line, const char *fmt, ...) |