Added glMultiDrawArrays and glMultiDrawElements

This commit is contained in:
Elias Naur 2003-02-17 15:13:41 +00:00
parent 55ac8dd74c
commit c84ab8669d
3 changed files with 48 additions and 0 deletions

View file

@ -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);
}