diff options
author | Chris Robinson <[email protected]> | 2016-06-03 09:40:30 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2016-06-03 09:40:30 -0700 |
commit | 2c402e1ab524532020b36426375098c39df0e9d8 (patch) | |
tree | e2d4ce5dec9042ce3ef3e796060e8e0e3f653b25 /OpenAL32 | |
parent | e38a81c5b62a350e448f31fd482d92c61fd84c58 (diff) |
Add property queries to get the device latency with the clock
Diffstat (limited to 'OpenAL32')
-rw-r--r-- | OpenAL32/Include/alMain.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index 18aa4df3..ed4e56f2 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -46,6 +46,8 @@ typedef int64_t ALCint64SOFT; typedef uint64_t ALCuint64SOFT; #define ALC_DEVICE_CLOCK_SOFT 0x1600 +#define ALC_DEVICE_LATENCY_SOFT 0x1601 +#define ALC_DEVICE_CLOCK_LATENCY_SOFT 0x1602 typedef void (ALC_APIENTRY*LPALCGETINTEGER64VSOFT)(ALCdevice *device, ALCenum pname, ALsizei size, ALCint64SOFT *values); #ifdef AL_ALEXT_PROTOTYPES ALC_API void ALC_APIENTRY alcGetInteger64vSOFT(ALCdevice *device, ALCenum pname, ALsizei size, ALCint64SOFT *values); |