search for: alfloat

Displaying 1 result from an estimated 1 matches for "alfloat".

Did you mean: afloat
2006 Jan 17
1
How to loop a Vobis sound ?
...ueued Buffers bool IsPlaying (); void Empty (); // Empty Queued Buffer // play attributes // called after current buffer is set. // n: number of repeats, n < 0: Infinite Loop, n = [0,1]: play once, #define AL_SRC_LOOP -1 void SetRepeats (int n); void Volume (ALfloat fVol) { alSourcef (m_id, AL_GAIN, fVol); } // 3D sound Attributes void SetRelative (bool bRel); void SetPosition (ALfloat *pPos) { alSourcefv (m_id, AL_POSITION, pPos); } void SetVelocity (ALfloat *p3f) { alSourcefv (m_id, AL_VELOCITY, p3f); } // default is enabled, Set disabl...