Fixed naming

This commit is contained in:
Elias Naur 2004-03-29 07:32:37 +00:00
parent 5fb7f5e0e2
commit 351b8165ef
4 changed files with 9 additions and 9 deletions

View file

@ -273,7 +273,7 @@ public final class GL15 {
// ---------------------------
// ---------------------------
public static void glGetQueryObjecti(int id, int pname, IntBuffer params) {
public static void glGetQueryObject(int id, int pname, IntBuffer params) {
BufferChecks.checkBuffer(params);
nglGetQueryObjectiv(id, pname, params, params.position());
}
@ -285,7 +285,7 @@ public final class GL15 {
// ---------------------------
// ---------------------------
public static void glGetQueryObjectui(int id, int pname, IntBuffer params) {
public static void glGetQueryObjectu(int id, int pname, IntBuffer params) {
BufferChecks.checkBuffer(params);
nglGetQueryObjectuiv(id, pname, params, params.position());
}