diff options
author | Chris Robinson <[email protected]> | 2008-11-11 05:57:32 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2008-11-11 05:57:32 -0800 |
commit | fc4c867f27ed6e4c4cee8f5a5228c2c9543e7ee9 (patch) | |
tree | 0124848208a01afd2b36006ef901138c196711ba /OpenAL32/alExtension.c | |
parent | 9ba30c4e20460de9bc1ed2005543d626f73e4af3 (diff) |
Add initial AL_EXTX_buffer_sub_data support
Note that this is an in-development extension, as noted by the EXTX moniker
instead of EXT. It's behavior is subject to change, and the extension string
will be removed (replaced with the official string once it's finalized).
Developers are discouraged from using this in production code, though feel
free to play around with it.
Diffstat (limited to 'OpenAL32/alExtension.c')
-rw-r--r-- | OpenAL32/alExtension.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenAL32/alExtension.c b/OpenAL32/alExtension.c index 876aa41f..4eef8ba5 100644 --- a/OpenAL32/alExtension.c +++ b/OpenAL32/alExtension.c @@ -30,6 +30,7 @@ #include "alEffect.h" #include "alAuxEffectSlot.h" #include "alSource.h" +#include "alBuffer.h" #include "AL/al.h" #include "AL/alc.h" @@ -144,6 +145,8 @@ static ALfunction function[]= { { "alGetAuxiliaryEffectSlotf", (ALvoid *) alGetAuxiliaryEffectSlotf }, { "alGetAuxiliaryEffectSlotfv", (ALvoid *) alGetAuxiliaryEffectSlotfv}, + { "alBufferSubDataEXT", (ALvoid *) alBufferSubDataEXT }, + { NULL, (ALvoid *) NULL } }; static ALenums enumeration[]={ |