Example usage for org.lwjgl.opengl GL20 glVertexAttrib4s

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

Introduction

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

Prototype

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

Source Link

Document

Short version of #glVertexAttrib4f VertexAttrib4f .

Usage

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

License:Open Source License

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