Example usage for org.lwjgl.opengl GL15 glGetQueryi

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

Introduction

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

Prototype

@NativeType("void")
public static int glGetQueryi(@NativeType("GLenum") int target, @NativeType("GLenum") int pname) 

Source Link

Document

Returns parameters of a query object target.

Usage

From source file:tk.ivybits.engine.gl.GL.java

License:Open Source License

public static int glGetQueryi(int a, int b) {
    return GL15.glGetQueryi(a, b);
}