diff options
author | Chris Robinson <[email protected]> | 2015-10-02 23:54:30 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2015-10-03 19:59:21 -0700 |
commit | aa10068ca20c2241c8d80627a5be3aeb39efcea2 (patch) | |
tree | cfe254301c5cb0f93940e790709aaf5f5b96e1ea /OpenAL32 | |
parent | 0fcd497796639a8af916dcfb0c61c67c1e76c6aa (diff) |
Add methods to enumerate and query device HRTFs
Currently just returns a dummy entry.
Diffstat (limited to 'OpenAL32')
-rw-r--r-- | OpenAL32/Include/alMain.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index 17ce9122..5051baf7 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -50,8 +50,12 @@ #define ALC_HRTF_REQUIRED_SOFT 0x0003 #define ALC_HRTF_HEADPHONES_DETECTED_SOFT 0x0004 #define ALC_HRTF_UNSUPPORTED_FORMAT_SOFT 0x0005 +#define ALC_NUM_HRTF_SPECIFIER_SOFT 0x1994 +#define ALC_HRTF_SPECIFIER_SOFT 0x1995 +typedef const ALCchar* (ALC_APIENTRY*LPALCGETSTRINGISOFT)(ALCdevice *device, ALenum paramName, ALsizei index); typedef ALCboolean (ALC_APIENTRY*LPALCRESETDEVICESOFT)(ALCdevice *device, const ALCint *attribs); #ifdef AL_ALEXT_PROTOTYPES +ALC_API const ALCchar* ALC_APIENTRY alcGetStringiSOFT(ALCdevice *device, ALenum paramName, ALsizei index); ALC_API ALCboolean ALC_APIENTRY alcResetDeviceSOFT(ALCdevice *device, const ALCint *attribs); #endif #endif |