Example usage for org.lwjgl.opengl GL32 glGetInteger64

List of usage examples for org.lwjgl.opengl GL32 glGetInteger64

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL32 glGetInteger64.

Prototype

@NativeType("void")
public static long glGetInteger64(@NativeType("GLenum") int pname) 

Source Link

Document

Returns the 64bit integer value or values of a selected parameter.

Usage

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

License:Open Source License

public static long glGetInteger64(int a) {
    return GL32.glGetInteger64(a);
}