Example usage for org.lwjgl.opengl GL20 glGetVertexAttribfv

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

Introduction

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

Prototype

public static void glGetVertexAttribfv(@NativeType("GLuint") int index, @NativeType("GLenum") int pname,
        @NativeType("GLfloat *") float[] params) 

Source Link

Document

Array version of: #glGetVertexAttribfv GetVertexAttribfv

Usage

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

License:Apache License

public void glGetVertexAttribfv(int index, int pname, FloatBuffer params) {
    GL20.glGetVertexAttribfv(index, pname, params);
}