diff options
author | Chris Robinson <[email protected]> | 2018-05-21 23:25:56 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2018-05-21 23:25:56 -0700 |
commit | 4e315353c82adf7c65fed52e2d99c355e52fc821 (patch) | |
tree | 9e3bb53f4dd48206cd8db140683473bc1d41af68 /Alc/inprogext.h | |
parent | 720ec2beea665c6098753e13713b165fc3729162 (diff) |
Add a method to queue multiple buffer layers onto a source
Diffstat (limited to 'Alc/inprogext.h')
-rw-r--r-- | Alc/inprogext.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Alc/inprogext.h b/Alc/inprogext.h index 619b604f..3025abe2 100644 --- a/Alc/inprogext.h +++ b/Alc/inprogext.h @@ -72,6 +72,14 @@ AL_API void AL_APIENTRY alGetPointervSOFT(ALenum pname, void **values); #endif #endif +#ifndef AL_SOFT_buffer_layers +#define AL_SOFT_buffer_layers +typedef void (AL_APIENTRY*LPALSOURCEQUEUEBUFFERLAYERSSOFT)(ALuint src, ALsizei nb, const ALuint *buffers); +#ifdef AL_ALEXT_PROTOTYPES +AL_API void AL_APIENTRY alSourceQueueBufferLayersSOFT(ALuint src, ALsizei nb, const ALuint *buffers); +#endif +#endif + #ifdef __cplusplus } /* extern "C" */ #endif |