diff options
author | Chris Robinson <[email protected]> | 2011-03-16 11:29:22 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-03-16 11:29:22 -0700 |
commit | 2f7de9d696fc58f31c4caf7ee6ee36428235aea7 (patch) | |
tree | 101370af52952e3de75931214e7aa35d7af4df61 /Alc | |
parent | 9cee723e928c1c39233cf80828557f4b76530642 (diff) |
Add alBufferSamplesSOFT, as an initial start to AL_SOFT_buffer_samples
Diffstat (limited to 'Alc')
-rw-r--r-- | Alc/ALc.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -893,7 +893,7 @@ ALboolean DecomposeDevFormat(ALenum format, enum DevFmtChannels *chans, return AL_FALSE; } -static ALboolean IsValidType(ALenum type) +ALboolean IsValidType(ALenum type) { switch(type) { @@ -912,7 +912,7 @@ static ALboolean IsValidType(ALenum type) return AL_FALSE; } -static ALboolean IsValidChannels(ALenum channels) +ALboolean IsValidChannels(ALenum channels) { switch(channels) { |