Example usage for org.lwjgl.opengl GL40 glEndQueryIndexed

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

Introduction

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

Prototype

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

Source Link

Document

Ends a query object on an indexed target

Usage

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

License:Open Source License

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