mirror of
https://github.com/shadowfacts/lwjgl2-arm64.git
synced 2026-04-06 06:53:59 +00:00
Fixed two missing int->Buffer conversions
This commit is contained in:
parent
820f622f73
commit
8202ff4717
2 changed files with 6 additions and 9 deletions
|
|
@ -104,8 +104,8 @@ public class CoreGL implements CoreGLConstants {
|
|||
public static native void glCopyTexImage2D(int target, int level, int internalFormat, int x, int y, int width, int height, int border);
|
||||
public static native void glCopyTexImage1D(int target, int level, int internalFormat, int x, int y, int width, int border);
|
||||
/* OpenGL 1.2 functions */
|
||||
public static native void glColorTableParameteriv(int target, int pname, int params);
|
||||
public static native void glColorTableParameterfv(int target, int pname, int params);
|
||||
public static native void glColorTableParameteriv(int target, int pname, IntBuffer params);
|
||||
public static native void glColorTableParameterfv(int target, int pname, FloatBuffer params);
|
||||
public static native void glCopyColorSubTable(int target, int start, int x, int y, int width);
|
||||
public static native void glCopyColorTable(int target, int internalformat, int x, int y, int width);
|
||||
public static native void glBlendEquation(int mode);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue