Example usage for org.lwjgl.opengl GL20 glVertexAttrib1d

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

Introduction

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

Prototype

public static void glVertexAttrib1d(@NativeType("GLuint") int index, @NativeType("GLdouble") double v0) 

Source Link

Document

Double version of #glVertexAttrib1f VertexAttrib1f .

Usage

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

License:Open Source License

public static void glVertexAttrib1d(int a, double b) {
    GL20.glVertexAttrib1d(a, b);
}