From bcc4b5de41dcfca5eac19111506b996d3531d908 Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Sun, 6 Aug 2023 21:46:25 +0200 Subject: Bug 1441, 852: Annotate ARB_draw_indirect dual sourcing, remove redundant manual declarations --- make/config/jogl/gl4bc-common-cpubufferJavaCode.java | 8 -------- 1 file changed, 8 deletions(-) (limited to 'make/config/jogl/gl4bc-common-cpubufferJavaCode.java') diff --git a/make/config/jogl/gl4bc-common-cpubufferJavaCode.java b/make/config/jogl/gl4bc-common-cpubufferJavaCode.java index a29f540fa..dd18ed0d3 100644 --- a/make/config/jogl/gl4bc-common-cpubufferJavaCode.java +++ b/make/config/jogl/gl4bc-common-cpubufferJavaCode.java @@ -1,12 +1,4 @@ - /** Entry point to C language function: void {@native glDrawArraysIndirect}(GLenum mode, const GLvoid * indirect);
Part of GL_VERSION_4_0, GL_ARB_draw_indirect - @param indirect a direct or array-backed {@link java.nio.Buffer} */ - public void glDrawArraysIndirect(int mode, Buffer indirect); - - /** Entry point to C language function: void {@native glDrawElementsIndirect}(GLenum mode, GLenum type, const GLvoid * indirect);
Part of GL_VERSION_4_0, GL_ARB_draw_indirect - @param indirect a direct or array-backed {@link java.nio.Buffer} */ - public void glDrawElementsIndirect(int mode, int type, Buffer indirect); - /** Entry point to C language function: void {@native glDrawElementsInstancedBaseInstance}(GLenum mode, GLsizei count, GLenum type, const void * indices, GLsizei instancecount, GLuint baseinstance);
Part of GL_VERSION_4_2, GL_ARB_base_instance @param indices a direct or array-backed {@link java.nio.Buffer} */ public void glDrawElementsInstancedBaseInstance(int mode, int count, int type, Buffer indices, int instancecount, int baseinstance); -- cgit v1.2.3