Example usage for org.lwjgl.opengl GL43 glVertexAttribLFormat

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

Introduction

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

Prototype

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

Source Link

Document

Specifies the organization of 64-bit double data in vertex arrays.

Usage

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

License:Open Source License

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