Example usage for org.lwjgl.opengl GL33 glGetQueryObjecti64

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

Introduction

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

Prototype

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

Source Link

Document

Returns the 64bit integer value of query object parameter.

Usage

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

License:Open Source License

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