Example usage for org.lwjgl.opengl GL41 glVertexAttribL4d

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

Introduction

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

Prototype

public static void glVertexAttribL4d(@NativeType("GLuint") int index, @NativeType("GLdouble") double x,
        @NativeType("GLdouble") double y, @NativeType("GLdouble") double z, @NativeType("GLdouble") double w) 

Source Link

Document

Specifies the value of a generic vertex attribute.

Usage

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

License:Open Source License

public static void glVertexAttribL4d(int a, double b, double c, double d, double e) {
    GL41.glVertexAttribL4d(a, b, c, d, e);
}