Example usage for org.lwjgl.opengl GL32 glGetInteger64v

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

Introduction

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

Prototype

public static void glGetInteger64v(@NativeType("GLenum") int pname, @NativeType("GLint64 *") long[] params) 

Source Link

Document

Array version of: #glGetInteger64v GetInteger64v

Usage

From source file:com.badlogic.gdx.backends.jglfw.JglfwGL30.java

License:Apache License

@Override
public void glGetInteger64v(int pname, LongBuffer params) {
    GL32.glGetInteger64v(pname, params);
}