Example usage for org.lwjgl.opengl GL20 glVertexAttrib3s

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

Introduction

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

Prototype

public static void glVertexAttrib3s(@NativeType("GLuint") int index, @NativeType("GLshort") short v0,
        @NativeType("GLshort") short v1, @NativeType("GLshort") short v2) 

Source Link

Document

Short version of #glVertexAttrib3f VertexAttrib3f .

Usage

From source file:tk.ivybits.engine.gl.GL.java

License:Open Source License

public static void glVertexAttrib3s(int a, short b, short c, short d) {
    GL20.glVertexAttrib3s(a, b, c, d);
}