Added a DrawElements version with explicit count & type parameters.

This commit is contained in:
Ioannis Tsakpinis 2013-07-17 15:57:39 +03:00
parent 476dbf74a7
commit 67d4e7c64d
1 changed files with 3 additions and 0 deletions

View File

@ -921,6 +921,9 @@ public interface GL11 {
@GLushort
@GLuint Buffer indices);
@Alternate("glDrawElements")
void glDrawElements(@GLenum int mode, @GLsizei int count, @GLenum int type, @BufferObject(BufferKind.ElementVBO) @Const @Check("count") ByteBuffer indices);
void glDrawBuffer(@GLenum int mode);
void glDrawArrays(@GLenum int mode, int first, @GLsizei int count);