Exemplo n.º 1
0
//--------------------
void ofSoundUpdate(){
	#ifdef OF_SOUND_PLAYER_FMOD
		ofFmodSoundUpdate();
	#else
		ofLogWarning("ofSoundPlayer") << "ofSoundUpdate() not implemented on this platform";
	#endif
}
//--------------------
void ofSoundUpdate(){
	#ifdef OF_SOUND_PLAYER_FMOD
		ofFmodSoundUpdate();
    #elif defined(OF_SOUND_PLAYER_OPENAL)
        //ofOpenALSoundUpdate();
	#endif
}
//--------------------
void ofSoundUpdate() {
#ifdef OF_SOUND_PLAYER_FMOD
    ofFmodSoundUpdate();
#endif
}