Example usage for org.lwjgl.opengl GL40 glBeginQueryIndexed

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

Introduction

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

Prototype

public static void glBeginQueryIndexed(@NativeType("GLenum") int target, @NativeType("GLuint") int index,
        @NativeType("GLuint") int id) 

Source Link

Document

Begins a query object on an indexed target

Usage

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

License:Open Source License

public static void glBeginQueryIndexed(int a, int b, int c) {
    GL40.glBeginQueryIndexed(a, b, c);
}