use of org.lwjgl.openal.ALCCapabilities in project jmonkeyengine by jMonkeyEngine.
the class LwjglALC method createALC.
public void createALC() {
device = ALC10.alcOpenDevice((ByteBuffer) null);
ALCCapabilities deviceCaps = ALC.createCapabilities(device);
context = ALC10.alcCreateContext(device, (IntBuffer) null);
ALC10.alcMakeContextCurrent(context);
AL.createCapabilities(deviceCaps);
}
Aggregations