Please enable JavaScript to use RhodeCode Enterprise
Commit Description:
Various UI improvements.
Commit Description:
Various UI improvements.
#include "audio.h"
PFN_AUDIO_DESTROY_CONTEXT audio_destroy_context = NULL ;
PFN_AUDIO_WAVE_LOAD audio_wave_load = NULL ;
PFN_AUDIO_WAVE_PLAY audio_wave_play = NULL ;
PFN_AUDIO_UPDATE_VOLUMEMETER audio_update_volumemeter = NULL ;
extern AudioContext * xaudio_create_context ();
extern AudioContext * faudio_create_context ();
AudioContext * audio_create_context ( AudioEngine p_engine )
{
switch ( p_engine )
{
#ifdef HAVE_XAUDIO2
case AudioEngine_XAudio2 :
return xaudio_create_context ();
#endif
case AudioEngine_FAudio :
return faudio_create_context ();
default :
return NULL ;
}
}
Site-wide shortcuts
/
Use quick search box
g h
Goto home page
g g
Goto my private gists page
g G
Goto my public gists page
n r
New repository page
n g
New gist page
Repositories
g s
Goto summary page
g c
Goto changelog page
g f
Goto files page
g F
Goto files page with file search activated
g p
Goto pull requests page
g o
Goto repository settings
g O
Goto repository permissions settings