Example usage for org.lwjgl.opengl GL43 glVertexAttribFormat

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

Introduction

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

Prototype

public static void glVertexAttribFormat(@NativeType("GLuint") int attribindex, @NativeType("GLint") int size,
        @NativeType("GLenum") int type, @NativeType("GLboolean") boolean normalized,
        @NativeType("GLuint") int relativeoffset) 

Source Link

Document

Specifies the organization of data in vertex arrays.

Usage

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

License:Open Source License

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