| 140 | } |
| 141 | |
| 142 | unsigned int SoundBuffer::getChannelCount() const { |
| 143 | ALint channelCount; |
| 144 | alCheck( alGetBufferi( mBuffer, AL_CHANNELS, &channelCount ) ); |
| 145 | return channelCount; |
| 146 | } |
| 147 | |
| 148 | Time SoundBuffer::getDuration() const { |
| 149 | return mDuration; |
no outgoing calls
no test coverage detected