Example usage for org.lwjgl.opengl GL20 glVertexAttrib2d

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

Introduction

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

Prototype

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

Source Link

Document

Double version of #glVertexAttrib2f VertexAttrib2f .

Usage

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

License:Open Source License

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