mirror of
https://github.com/shadowfacts/lwjgl2-arm64.git
synced 2026-04-05 14:35:58 +00:00
glTexGeni* fix
This commit is contained in:
parent
e90b540d01
commit
269b5b0046
3 changed files with 7 additions and 7 deletions
|
|
@ -495,9 +495,9 @@ public class CoreGL11 implements CoreGL11Constants {
|
|||
private static native void nglTexGenfv(int coord, int pname, FloatBuffer params, int params_offset);
|
||||
public static native void glTexGeni(int coord, int pname, int param);
|
||||
public static void glTexGen(int coord, int pname, IntBuffer params) {
|
||||
nglTexGenfi(coord, pname, params, params.position());
|
||||
nglTexGeniv(coord, pname, params, params.position());
|
||||
}
|
||||
private static native void nglTexGenfi(int coord, int pname, IntBuffer params, int params_offset);
|
||||
private static native void nglTexGeniv(int coord, int pname, IntBuffer params, int params_offset);
|
||||
public static native void glTexEnvf(int target, int pname, float param);
|
||||
public static native void glTexEnvi(int target, int pname, int param);
|
||||
public static void glTexEnv(int target, int pname, FloatBuffer params) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue