Example usage for org.lwjgl.opengl GL20 glVertexAttrib3fv

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

Introduction

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

Prototype

public static void glVertexAttrib3fv(@NativeType("GLuint") int index,
        @NativeType("GLfloat const *") float[] v) 

Source Link

Document

Array version of: #glVertexAttrib3fv VertexAttrib3fv

Usage

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

License:Apache License

public void glVertexAttrib3fv(int indx, FloatBuffer values) {
    GL20.glVertexAttrib3fv(indx, values);
}