Changeset 5293 in orxonox.OLD for trunk/src/lib/sound
- Timestamp:
- Oct 7, 2005, 12:49:22 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/sound/sound_engine.cc
r5279 r5293 205 205 /** 206 206 * standard deconstructor 207 208 */ 207 */ 209 208 SoundEngine::~SoundEngine () 210 209 { 211 SoundEngine::singletonRef = NULL;212 213 210 // deleting all the SoundSources 214 211 if(this->sourceList != NULL) … … 236 233 delete bufferIterator; 237 234 } 235 238 236 // removing openAL from AudioResource 239 237 alutExit(); 238 239 SoundEngine::singletonRef = NULL; 240 240 } 241 241 … … 307 307 308 308 /** 309 * 309 * adds a SoundSource to the sourceList of the SoundEngine 310 310 * @param source The source to add to the sourceList 311 311 */ … … 392 392 393 393 /** 394 * SourceEngine::flushAllBuffers 395 */ 394 * flushes all the Buffers 395 * deletes them from the BufferList, and also removes them via the ResourceManager. 396 */ 396 397 void SoundEngine::flushAllBuffers() 397 398 { … … 410 411 411 412 /** 412 * SourceEngine::flushAllBuffers413 * deletes all the Sources. 413 414 */ 414 415 void SoundEngine::flushAllSources()
Note: See TracChangeset
for help on using the changeset viewer.