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.
30 lines
672 B
30 lines
672 B
package com.jme3.audio.android;
|
|
|
|
import com.jme3.audio.openal.ALC;
|
|
import java.nio.IntBuffer;
|
|
|
|
public final class AndroidALC implements ALC {
|
|
|
|
static {
|
|
System.loadLibrary("openalsoftjme");
|
|
}
|
|
|
|
public AndroidALC() {
|
|
}
|
|
|
|
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();
|
|
}
|
|
|