diff options
author | Chris Robinson <[email protected]> | 2010-09-21 09:43:35 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2010-09-21 09:43:35 -0700 |
commit | 2d4453968d67af5cfee81c09adcc7b1ac6bd03f6 (patch) | |
tree | 1fb67bd30f2b630d10c397707e863c76f9292082 /OpenAL32/alExtension.c | |
parent | a2580a85a82bdfdd25f71e17fe233ec5beaac2e0 (diff) |
Implement AL_SOFT_buffer_sub_data using the current AL_EXT_buffer_sub_data spec
This extension can be useful for some applications, but a full EXT version may
not be ready for some time. Using the SOFT moniker will help differentiate it
in case changes need to be done for the EXT version.
Diffstat (limited to 'OpenAL32/alExtension.c')
-rw-r--r-- | OpenAL32/alExtension.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenAL32/alExtension.c b/OpenAL32/alExtension.c index 15b8c0e2..0febf225 100644 --- a/OpenAL32/alExtension.c +++ b/OpenAL32/alExtension.c @@ -68,7 +68,9 @@ static const ALenums enumeration[] = { { "AL_MAX_DISTANCE", AL_MAX_DISTANCE }, { "AL_SEC_OFFSET", AL_SEC_OFFSET }, { "AL_SAMPLE_OFFSET", AL_SAMPLE_OFFSET }, + { "AL_SAMPLE_RW_OFFSETS_SOFT", AL_SAMPLE_RW_OFFSETS_SOFT }, { "AL_BYTE_OFFSET", AL_BYTE_OFFSET }, + { "AL_BYTE_RW_OFFSETS_SOFT", AL_BYTE_RW_OFFSETS_SOFT }, { "AL_SOURCE_TYPE", AL_SOURCE_TYPE }, { "AL_STATIC", AL_STATIC }, { "AL_STREAMING", AL_STREAMING }, |