| 14 | namespace EE { namespace Audio { |
| 15 | |
| 16 | SoundBuffer::SoundBuffer() : mBuffer( 0 ), mDuration() { |
| 17 | // Create the buffer |
| 18 | alCheck( alGenBuffers( 1, &mBuffer ) ); |
| 19 | } |
| 20 | |
| 21 | SoundBuffer::SoundBuffer( const SoundBuffer& copy ) : |
| 22 | mBuffer( 0 ), |
nothing calls this directly
no test coverage detected