Example usage for org.lwjgl.opengl GL20 glVertexAttrib2s

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

Introduction

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

Prototype

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

Source Link

Document

Short version of #glVertexAttrib2f VertexAttrib2f .

Usage

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

License:Open Source License

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