Example usage for org.lwjgl.opengl GL33 glGetQueryObjectui64

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

Introduction

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

Prototype

@NativeType("void")
public static long glGetQueryObjectui64(@NativeType("GLuint") int id, @NativeType("GLenum") int pname) 

Source Link

Document

Unsigned version of #glGetQueryObjecti64v GetQueryObjecti64v .

Usage

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

License:Open Source License

public static long glGetQueryObjectui64(int a, int b) {
    return GL33.glGetQueryObjectui64(a, b);
}