diff options
author | Chris Robinson <[email protected]> | 2010-11-21 02:36:34 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2010-11-21 02:36:34 -0800 |
commit | 4c576631ad50216f296df87850137ed87e952711 (patch) | |
tree | ac9e37f5d08ad2179d53a438fe60e7dc9e4faced /Alc | |
parent | 5f6f046d258d44daf5a6094bf3e7371231bfe1d4 (diff) |
Hide AL_EXTX_sample_buffer_object
It hasn't been going anywhere, and it's current use is dubious. Leave the code
in for now, but it may be removed later.
Diffstat (limited to 'Alc')
-rw-r--r-- | Alc/ALc.c | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -237,7 +237,7 @@ static const ALCfunction alcFunctions[] = { { "alBufferSubDataEXT", (ALCvoid *) alBufferSubDataEXT }, { "alBufferSubDataSOFT", (ALCvoid *) alBufferSubDataSOFT }, - +#if 0 { "alGenDatabuffersEXT", (ALCvoid *) alGenDatabuffersEXT }, { "alDeleteDatabuffersEXT", (ALCvoid *) alDeleteDatabuffersEXT }, { "alIsDatabufferEXT", (ALCvoid *) alIsDatabufferEXT }, @@ -255,7 +255,7 @@ static const ALCfunction alcFunctions[] = { { "alSelectDatabufferEXT", (ALCvoid *) alSelectDatabufferEXT }, { "alMapDatabufferEXT", (ALCvoid *) alMapDatabufferEXT }, { "alUnmapDatabufferEXT", (ALCvoid *) alUnmapDatabufferEXT }, - +#endif { NULL, (ALCvoid *) NULL } }; @@ -361,8 +361,7 @@ static const ALchar alExtList[] = "AL_EXTX_buffer_sub_data AL_EXT_DOUBLE AL_EXT_EXPONENT_DISTANCE " "AL_EXT_FLOAT32 AL_EXT_IMA4 AL_EXT_LINEAR_DISTANCE AL_EXTX_loop_points " "AL_EXT_MCFORMATS AL_EXT_MULAW AL_EXT_MULAW_MCFORMATS AL_EXT_OFFSET " - "AL_EXTX_sample_buffer_object AL_EXT_source_distance_model " - "AL_LOKI_quadriphonic AL_SOFT_buffer_sub_data"; + "AL_EXT_source_distance_model AL_LOKI_quadriphonic AL_SOFT_buffer_sub_data"; // Mixing Priority Level static ALint RTPrioLevel; |