From 6072a0b873dc6e9748c570dcc05f971a411a3231 Mon Sep 17 00:00:00 2001 From: Ioannis Tsakpinis Date: Sat, 12 Sep 2020 16:01:47 +0300 Subject: [PATCH] chore(GL): update generated classes --- .../java/org/lwjgl/opengl/ARBTimerQuery.java | 22 ++++++++++++++++ .../generated/java/org/lwjgl/opengl/GL15.java | 26 +++++++++++++++++++ .../generated/java/org/lwjgl/opengl/GL33.java | 26 +++++++++++++++++++ 3 files changed, 74 insertions(+) diff --git a/modules/lwjgl/opengl/src/generated/java/org/lwjgl/opengl/ARBTimerQuery.java b/modules/lwjgl/opengl/src/generated/java/org/lwjgl/opengl/ARBTimerQuery.java index ee427aebdf..1cdad9aa68 100644 --- a/modules/lwjgl/opengl/src/generated/java/org/lwjgl/opengl/ARBTimerQuery.java +++ b/modules/lwjgl/opengl/src/generated/java/org/lwjgl/opengl/ARBTimerQuery.java @@ -73,6 +73,17 @@ public static void glGetQueryObjecti64v(@NativeType("GLuint") int id, @NativeTyp GL33C.glGetQueryObjecti64v(id, pname, params); } + /** + * Returns the 64bit integer value of query object parameter. + * + * @param id the name of a query object + * @param pname the symbolic name of a query object parameter. One of:
{@link GL15#GL_QUERY_RESULT QUERY_RESULT}{@link GL15#GL_QUERY_RESULT_AVAILABLE QUERY_RESULT_AVAILABLE}
+ * @param params the requested data + */ + public static void glGetQueryObjecti64v(@NativeType("GLuint") int id, @NativeType("GLenum") int pname, @NativeType("GLint64 *") long params) { + GL33C.glGetQueryObjecti64v(id, pname, params); + } + /** * Returns the 64bit integer value of query object parameter. * @@ -102,6 +113,17 @@ public static void glGetQueryObjectui64v(@NativeType("GLuint") int id, @NativeTy GL33C.glGetQueryObjectui64v(id, pname, params); } + /** + * Unsigned version of {@link #glGetQueryObjecti64v GetQueryObjecti64v}. + * + * @param id the name of a query object + * @param pname the symbolic name of a query object parameter + * @param params the requested data + */ + public static void glGetQueryObjectui64v(@NativeType("GLuint") int id, @NativeType("GLenum") int pname, @NativeType("GLuint64 *") long params) { + GL33C.glGetQueryObjectui64v(id, pname, params); + } + /** * Unsigned version of {@link #glGetQueryObjecti64v GetQueryObjecti64v}. * diff --git a/modules/lwjgl/opengl/src/generated/java/org/lwjgl/opengl/GL15.java b/modules/lwjgl/opengl/src/generated/java/org/lwjgl/opengl/GL15.java index 9015c2c015..a441ce0d10 100644 --- a/modules/lwjgl/opengl/src/generated/java/org/lwjgl/opengl/GL15.java +++ b/modules/lwjgl/opengl/src/generated/java/org/lwjgl/opengl/GL15.java @@ -934,6 +934,19 @@ public static void glGetQueryObjectiv(@NativeType("GLuint") int id, @NativeType( GL15C.glGetQueryObjectiv(id, pname, params); } + /** + * Returns the integer value of a query object parameter. + * + * @param id the name of a query object + * @param pname the symbolic name of a query object parameter. One of:
{@link GL15C#GL_QUERY_RESULT QUERY_RESULT}{@link GL15C#GL_QUERY_RESULT_AVAILABLE QUERY_RESULT_AVAILABLE}
+ * @param params the requested data + * + * @see Reference Page + */ + public static void glGetQueryObjectiv(@NativeType("GLuint") int id, @NativeType("GLenum") int pname, @NativeType("GLint *") long params) { + GL15C.glGetQueryObjectiv(id, pname, params); + } + /** * Returns the integer value of a query object parameter. * @@ -967,6 +980,19 @@ public static void glGetQueryObjectuiv(@NativeType("GLuint") int id, @NativeType GL15C.glGetQueryObjectuiv(id, pname, params); } + /** + * Unsigned version of {@link #glGetQueryObjectiv GetQueryObjectiv}. + * + * @param id the name of a query object + * @param pname the symbolic name of a query object parameter. One of:
{@link GL15C#GL_QUERY_RESULT QUERY_RESULT}{@link GL15C#GL_QUERY_RESULT_AVAILABLE QUERY_RESULT_AVAILABLE}
+ * @param params the requested data + * + * @see Reference Page + */ + public static void glGetQueryObjectuiv(@NativeType("GLuint") int id, @NativeType("GLenum") int pname, @NativeType("GLuint *") long params) { + GL15C.glGetQueryObjectuiv(id, pname, params); + } + /** * Unsigned version of {@link #glGetQueryObjectiv GetQueryObjectiv}. * diff --git a/modules/lwjgl/opengl/src/generated/java/org/lwjgl/opengl/GL33.java b/modules/lwjgl/opengl/src/generated/java/org/lwjgl/opengl/GL33.java index c209ccce74..a52280192c 100644 --- a/modules/lwjgl/opengl/src/generated/java/org/lwjgl/opengl/GL33.java +++ b/modules/lwjgl/opengl/src/generated/java/org/lwjgl/opengl/GL33.java @@ -528,6 +528,19 @@ public static void glGetQueryObjecti64v(@NativeType("GLuint") int id, @NativeTyp GL33C.glGetQueryObjecti64v(id, pname, params); } + /** + * Returns the 64bit integer value of query object parameter. + * + * @param id the name of a query object + * @param pname the symbolic name of a query object parameter. One of:
{@link GL15#GL_QUERY_RESULT QUERY_RESULT}{@link GL15#GL_QUERY_RESULT_AVAILABLE QUERY_RESULT_AVAILABLE}
+ * @param params the requested data + * + * @see Reference Page + */ + public static void glGetQueryObjecti64v(@NativeType("GLuint") int id, @NativeType("GLenum") int pname, @NativeType("GLint64 *") long params) { + GL33C.glGetQueryObjecti64v(id, pname, params); + } + /** * Returns the 64bit integer value of query object parameter. * @@ -561,6 +574,19 @@ public static void glGetQueryObjectui64v(@NativeType("GLuint") int id, @NativeTy GL33C.glGetQueryObjectui64v(id, pname, params); } + /** + * Unsigned version of {@link #glGetQueryObjecti64v GetQueryObjecti64v}. + * + * @param id the name of a query object + * @param pname the symbolic name of a query object parameter + * @param params the requested data + * + * @see Reference Page + */ + public static void glGetQueryObjectui64v(@NativeType("GLuint") int id, @NativeType("GLenum") int pname, @NativeType("GLuint64 *") long params) { + GL33C.glGetQueryObjectui64v(id, pname, params); + } + /** * Unsigned version of {@link #glGetQueryObjecti64v GetQueryObjecti64v}. *