Example usage for org.lwjgl.opengl GL40 glGetQueryIndexedi

List of usage examples for org.lwjgl.opengl GL40 glGetQueryIndexedi

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL40 glGetQueryIndexedi.

Prototype

@NativeType("void")
public static int glGetQueryIndexedi(@NativeType("GLenum") int target, @NativeType("GLuint") int index,
        @NativeType("GLenum") int pname) 

Source Link

Document

Returns parameters of an indexed query object target.

Usage

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

License:Open Source License

public static int glGetQueryIndexedi(int a, int b, int c) {
    return GL40.glGetQueryIndexedi(a, b, c);
}