Changeset 4206 in orxonox.OLD for orxonox/branches/openAL/src/lib/sound/sound_engine.h
- Timestamp:
- May 17, 2005, 2:30:10 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/openAL/src/lib/sound/sound_engine.h
r4205 r4206 12 12 13 13 14 #define SOUND_DOPPLER_FACTOR 0.01 15 #define SOUND_DOPPLER_VELOCITY 500000000 14 #define SOUND_DOPPLER_FACTOR 0.01 //!< A factor for the audible doppler effect 15 #define SOUND_DOPPLER_VELOCITY 500000000 //!< A factor for the TravelSpeed of sound 16 16 17 17 // FORWARD DEFINITION … … 27 27 ~SoundBuffer(void); 28 28 29 /** \returns the ID of the buffer */ 29 30 inline ALuint getID(void) { return this->bufferID; } 30 31 … … 47 48 void stop(); 48 49 void pause(); 50 void rewind(); 49 51 50 52 // development functions 51 /** \ret runs The ID of the Source */53 /** \returns The ID of the Source */ 52 54 inline ALuint getID(void) { return this->sourceID; } 53 55 /** \returns the SourceNode of this Source */ … … 86 88 // error handling: 87 89 static void PrintALErrorString(ALenum err); 88 static void PrintALCErrorString(ALenum err);90 // static void PrintALCErrorString(ALenum err); 89 91 90 92 private:
Note: See TracChangeset
for help on using the changeset viewer.