Example #1
0
void gaudio_android_suspend(bool suspend)
{
	if (suspend)
		alcDevicePauseSOFT(OpenALData->device);
	else
		alcDeviceResumeSOFT(OpenALData->device);
}
Example #2
0
	void lime_alc_pause_device (value device) {
		
		#ifdef LIME_OPENALSOFT
		ALCdevice* alcDevice = (ALCdevice*)val_data (device);
		alcDevicePauseSOFT (alcDevice);
		#endif
		
	}
Example #3
0
 void Pause()
 {
     alcDevicePauseSOFT(device);
 }
Example #4
0
void ALDevice::pauseDSP()
{
    if(!hasExtension(SOFT_device_pause))
       throw std::runtime_error("ALC_SOFT_pause_device not supported");
    alcDevicePauseSOFT(mDevice);
}