Example usage for org.lwjgl.opengl GL41 glVertexAttribLPointer

List of usage examples for org.lwjgl.opengl GL41 glVertexAttribLPointer

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL41 glVertexAttribLPointer.

Prototype

public static void glVertexAttribLPointer(@NativeType("GLuint") int index, @NativeType("GLint") int size,
        @NativeType("GLsizei") int stride, @NativeType("void const *") DoubleBuffer pointer) 

Source Link

Document

Specifies the location and organization of a 64-bit vertex attribute array.

Usage

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

License:Open Source License

public static void glVertexAttribLPointer(int a, int b, int c, long d) {
    GL41.glVertexAttribLPointer(a, b, c, d);
}

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

License:Open Source License

public static void glVertexAttribLPointer(int a, int b, int c, DoubleBuffer d) {
    GL41.glVertexAttribLPointer(a, b, c, d);
}