Example usage for org.lwjgl.opengl GL20 glGetVertexAttribPointerv

List of usage examples for org.lwjgl.opengl GL20 glGetVertexAttribPointerv

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL20 glGetVertexAttribPointerv.

Prototype

public static void glGetVertexAttribPointerv(@NativeType("GLuint") int index, @NativeType("GLenum") int pname,
        @NativeType("void **") PointerBuffer pointer) 

Source Link

Document

Returns the address of the specified generic vertex attribute pointer.

Usage

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

License:Apache License

public void glGetVertexAttribPointerv(int index, int pname, Buffer pointer) {
    GL20.glGetVertexAttribPointerv(index, pname, (ByteBuffer) pointer);
}