Example usage for org.lwjgl.opengl GL15 glGetQueryiv

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

Introduction

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

Prototype

public static void glGetQueryiv(@NativeType("GLenum") int target, @NativeType("GLenum") int pname,
        @NativeType("GLint *") int[] params) 

Source Link

Document

Array version of: #glGetQueryiv GetQueryiv

Usage

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

License:Apache License

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