mirror of
https://github.com/shadowfacts/lwjgl2-arm64.git
synced 2026-04-08 16:04:39 +00:00
Buffer checking code
This commit is contained in:
parent
fd56dd232a
commit
061e1a76d1
51 changed files with 499 additions and 655 deletions
|
|
@ -49,6 +49,7 @@ public class NVPointSprite {
|
|||
public static native void glPointParameteriNV(int pname, int param);
|
||||
|
||||
public static void glPointParameterNV(int pname, IntBuffer piParams) {
|
||||
BufferChecks.checkBuffer(piParams);
|
||||
nglPointParameterivNV(pname, piParams, piParams.position());
|
||||
}
|
||||
private static native void nglPointParameterivNV(int pname, IntBuffer piParams, int piParams_offset);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue