diff options
author | Sven Gothel <[email protected]> | 2023-08-06 21:46:25 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2023-08-06 21:46:25 +0200 |
commit | bcc4b5de41dcfca5eac19111506b996d3531d908 (patch) | |
tree | 7ded27bb1712055eb6d094597e888cfd9aa66c9d /make/config/jogl/gl4bc-common-cpubufferJavaCode.java | |
parent | af321b4a90a4da9351dfbdd6d9a8202a73fc8c05 (diff) |
Bug 1441, 852: Annotate ARB_draw_indirect dual sourcing, remove redundant manual declarations
Diffstat (limited to 'make/config/jogl/gl4bc-common-cpubufferJavaCode.java')
-rw-r--r-- | make/config/jogl/gl4bc-common-cpubufferJavaCode.java | 8 |
1 files changed, 0 insertions, 8 deletions
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: <code> void {@native glDrawArraysIndirect}(GLenum mode, const GLvoid * indirect); </code> <br>Part of <code>GL_VERSION_4_0</code>, <code>GL_ARB_draw_indirect</code> - @param indirect a direct or array-backed {@link java.nio.Buffer} */ - public void glDrawArraysIndirect(int mode, Buffer indirect); - - /** Entry point to C language function: <code> void {@native glDrawElementsIndirect}(GLenum mode, GLenum type, const GLvoid * indirect); </code> <br>Part of <code>GL_VERSION_4_0</code>, <code>GL_ARB_draw_indirect</code> - @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: <code> void {@native glDrawElementsInstancedBaseInstance}(GLenum mode, GLsizei count, GLenum type, const void * indices, GLsizei instancecount, GLuint baseinstance); </code> <br>Part of <code>GL_VERSION_4_2</code>, <code>GL_ARB_base_instance</code> @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); |