Example usage for org.lwjgl.opengl GL43 glVertexAttribIFormat

List of usage examples for org.lwjgl.opengl GL43 glVertexAttribIFormat

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL43 glVertexAttribIFormat.

Prototype

public static void glVertexAttribIFormat(@NativeType("GLuint") int attribindex, @NativeType("GLint") int size,
        @NativeType("GLenum") int type, @NativeType("GLuint") int relativeoffset) 

Source Link

Document

Specifies the organization of pure integer data in vertex arrays.

Usage

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

License:Open Source License

public static void glVertexAttribIFormat(int a, int b, int c, int d) {
    GL43.glVertexAttribIFormat(a, b, c, d);
}