Example usage for org.lwjgl.opengl GL15 glGetQueryObjectuiv

List of usage examples for org.lwjgl.opengl GL15 glGetQueryObjectuiv

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL15 glGetQueryObjectuiv.

Prototype

public static void glGetQueryObjectuiv(@NativeType("GLuint") int id, @NativeType("GLenum") int pname,
        @NativeType("GLuint *") int[] params) 

Source Link

Document

Array version of: #glGetQueryObjectuiv GetQueryObjectuiv

Usage

From source file:com.badlogic.gdx.backends.jglfw.JglfwGL30.java

License:Apache License

@Override
public void glGetQueryObjectuiv(int id, int pname, IntBuffer params) {
    GL15.glGetQueryObjectuiv(id, pname, params);
}