Skip to content

Commit

Permalink
ALC10.java: add missing wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
khanhduytran0 authored Aug 12, 2023
1 parent fc07875 commit 9e6367a
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,11 @@ public static ALCdevice alcGetContextsDevice(ALCcontext context) {
public static void alcGetInteger(ALCdevice device, int pname, java.nio.IntBuffer integerdata) {
int res = alcGetInteger(device.device, pname);
integerdata.put(0, res);
}
}

public static String alcGetString(ALCdevice device, int pname) {
return alcGetString(device.device, pname);
}
// -- End LWJGL2 --

/** General tokens. */
Expand Down Expand Up @@ -518,4 +522,4 @@ public static void alcGetIntegerv(@NativeType("ALCdevice *") long deviceHandle,
invokePPV(deviceHandle, token, dest.length, dest, __functionAddress);
}

}
}

0 comments on commit 9e6367a

Please sign in to comment.