You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
594 B
26 lines
594 B
package com.jme3.audio.ios;
|
|
|
|
import com.jme3.audio.openal.ALC;
|
|
import java.nio.IntBuffer;
|
|
|
|
public final class IosALC implements ALC {
|
|
|
|
public IosALC() {
|
|
}
|
|
|
|
public native void createALC();
|
|
|
|
public native void destroyALC();
|
|
|
|
public native boolean isCreated();
|
|
|
|
public native String alcGetString(int parameter);
|
|
|
|
public native boolean alcIsExtensionPresent(String extension);
|
|
|
|
public native void alcGetInteger(int param, IntBuffer buffer, int size);
|
|
|
|
public native void alcDevicePauseSOFT();
|
|
|
|
public native void alcDeviceResumeSOFT();
|
|
}
|
|
|