Example usage for org.lwjgl.opengl GL33 glQueryCounter

List of usage examples for org.lwjgl.opengl GL33 glQueryCounter

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL33 glQueryCounter.

Prototype

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

Source Link

Document

Records the GL time into a query object after all previous commands have reached the GL server but have not yet necessarily executed.

Usage

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

License:Open Source License

public static void glQueryCounter(int a, int b) {
    GL33.glQueryCounter(a, b);
}