Example usage for org.lwjgl.opengl GL20 glVertexAttrib3d

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

Introduction

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

Prototype

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

Source Link

Document

Double version of #glVertexAttrib3f VertexAttrib3f .

Usage

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

License:Open Source License

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