Example usage for org.lwjgl.opengl GL32 glGetBufferParameteri64v

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

Introduction

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

Prototype

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

Source Link

Document

Array version of: #glGetBufferParameteri64v GetBufferParameteri64v

Usage

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

License:Apache License

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