Example usage for org.lwjgl.opengl GL30 glVertexAttribI2i

List of usage examples for org.lwjgl.opengl GL30 glVertexAttribI2i

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL30 glVertexAttribI2i.

Prototype

public static void glVertexAttribI2i(@NativeType("GLuint") int index, @NativeType("GLint") int x,
        @NativeType("GLint") int y) 

Source Link

Document

Specifies the value of a pure integer generic vertex attribute.

Usage

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

License:Open Source License

public static void glVertexAttribI2i(int a, int b, int c) {
    GL30.glVertexAttribI2i(a, b, c);
}