Skip to content

Commit

Permalink
chore(GL): update generated classes
Browse files Browse the repository at this point in the history
  • Loading branch information
Spasi committed Sep 12, 2020
1 parent b108dca commit 6072a0b
Show file tree
Hide file tree
Showing 3 changed files with 74 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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:<br><table><tr><td>{@link GL15#GL_QUERY_RESULT QUERY_RESULT}</td><td>{@link GL15#GL_QUERY_RESULT_AVAILABLE QUERY_RESULT_AVAILABLE}</td></tr></table>
* @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.
*
Expand Down Expand Up @@ -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}.
*
Expand Down
26 changes: 26 additions & 0 deletions modules/lwjgl/opengl/src/generated/java/org/lwjgl/opengl/GL15.java
Original file line number Diff line number Diff line change
Expand Up @@ -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:<br><table><tr><td>{@link GL15C#GL_QUERY_RESULT QUERY_RESULT}</td><td>{@link GL15C#GL_QUERY_RESULT_AVAILABLE QUERY_RESULT_AVAILABLE}</td></tr></table>
* @param params the requested data
*
* @see <a target="_blank" href="http://docs.gl/gl4/glGetQueryObject">Reference Page</a>
*/
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.
*
Expand Down Expand Up @@ -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:<br><table><tr><td>{@link GL15C#GL_QUERY_RESULT QUERY_RESULT}</td><td>{@link GL15C#GL_QUERY_RESULT_AVAILABLE QUERY_RESULT_AVAILABLE}</td></tr></table>
* @param params the requested data
*
* @see <a target="_blank" href="http://docs.gl/gl4/glGetQueryObject">Reference Page</a>
*/
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}.
*
Expand Down
26 changes: 26 additions & 0 deletions modules/lwjgl/opengl/src/generated/java/org/lwjgl/opengl/GL33.java
Original file line number Diff line number Diff line change
Expand Up @@ -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:<br><table><tr><td>{@link GL15#GL_QUERY_RESULT QUERY_RESULT}</td><td>{@link GL15#GL_QUERY_RESULT_AVAILABLE QUERY_RESULT_AVAILABLE}</td></tr></table>
* @param params the requested data
*
* @see <a target="_blank" href="http://docs.gl/gl4/glGetQueryObject">Reference Page</a>
*/
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.
*
Expand Down Expand Up @@ -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 <a target="_blank" href="http://docs.gl/gl4/glGetQueryObject">Reference Page</a>
*/
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}.
*
Expand Down

0 comments on commit 6072a0b

Please sign in to comment.