Example usage for org.lwjgl.opengl GL20 glVertexAttrib4d

List of usage examples for org.lwjgl.opengl GL20 glVertexAttrib4d

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL20 glVertexAttrib4d.

Prototype

public static void glVertexAttrib4d(@NativeType("GLuint") int index, @NativeType("GLdouble") double v0,
        @NativeType("GLdouble") double v1, @NativeType("GLdouble") double v2,
        @NativeType("GLdouble") double v3) 

Source Link

Document

Double version of #glVertexAttrib4f VertexAttrib4f .

Usage

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

License:Open Source License

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