| 134 | } |
| 135 | |
| 136 | unsigned int SoundBuffer::getSampleRate() const { |
| 137 | ALint sampleRate; |
| 138 | alCheck( alGetBufferi( mBuffer, AL_FREQUENCY, &sampleRate ) ); |
| 139 | return sampleRate; |
| 140 | } |
| 141 | |
| 142 | unsigned int SoundBuffer::getChannelCount() const { |
| 143 | ALint channelCount; |
no outgoing calls
no test coverage detected