mirror of
https://github.com/shadowfacts/lwjgl2-arm64.git
synced 2026-04-06 06:53:59 +00:00
Fixed compile errors in NVFragmentProgram
This commit is contained in:
parent
a6fb05827c
commit
9830d907d2
2 changed files with 47 additions and 54 deletions
|
|
@ -92,7 +92,7 @@ public class NVFragmentProgram extends NVProgram {
|
|||
// ---------------------------
|
||||
public static void glGetProgramLocalParameterARB(int target, int index, FloatBuffer params) {
|
||||
assert params.remaining() >= 4: "<params> must have 4 floats available.";
|
||||
nglGetProgramLocalParameterfvNV(target, index, params, params.position());
|
||||
nglGetProgramLocalParameterfvARB(target, index, params, params.position());
|
||||
}
|
||||
|
||||
private static native void nglGetProgramLocalParameterfvARB(int target, int index, FloatBuffer params, int params_offset);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue