diff --git a/src/templates/org/lwjgl/opengl/GL11.java b/src/templates/org/lwjgl/opengl/GL11.java index 9607590e..1d6d871e 100644 --- a/src/templates/org/lwjgl/opengl/GL11.java +++ b/src/templates/org/lwjgl/opengl/GL11.java @@ -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);