mirror of
https://github.com/shadowfacts/lwjgl2-arm64.git
synced 2026-04-05 22:45:50 +00:00
Added glMultiDrawArrays and glMultiDrawElements
This commit is contained in:
parent
55ac8dd74c
commit
c84ab8669d
3 changed files with 48 additions and 0 deletions
|
|
@ -495,7 +495,18 @@ public class CoreGL extends BaseGL implements CoreGLConstants {
|
|||
public native void stencilOp(int fail, int zfail, int zpass);
|
||||
public native void stencilMask(int mask);
|
||||
public native void viewport(int x, int y, int width, int height);
|
||||
public native void multiDrawArrays(
|
||||
int mode,
|
||||
int piFirst,
|
||||
int piCount,
|
||||
int primcount);
|
||||
|
||||
public native void multiDrawElements(
|
||||
int mode,
|
||||
int piCount,
|
||||
int type,
|
||||
int pIndices,
|
||||
int primcount);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue