Example usage for org.lwjgl.opengl GL20 glVertexAttrib3f

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

Introduction

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

Prototype

public static void glVertexAttrib3f(@NativeType("GLuint") int index, @NativeType("GLfloat") float v0,
        @NativeType("GLfloat") float v1, @NativeType("GLfloat") float v2) 

Source Link

Document

Specifies the value of a generic vertex attribute.

Usage

From source file:processing.lwjgl.PLWJGL.java

License:Open Source License

public void vertexAttrib3f(int index, float value0, float value1, float value2) {
    GL20.glVertexAttrib3f(index, value0, value1, value2);
}

From source file:processing.lwjgl.PLWJGL.java

License:Open Source License

public void vertexAttrib3fv(int index, FloatBuffer values) {
    GL20.glVertexAttrib3f(index, values.get(), values.get(), values.get());
}

From source file:processing.opengl.PLWJGL.java

License:Open Source License

@Override
public void vertexAttrib3f(int index, float value0, float value1, float value2) {
    GL20.glVertexAttrib3f(index, value0, value1, value2);
}

From source file:processing.opengl.PLWJGL.java

License:Open Source License

@Override
public void vertexAttrib3fv(int index, FloatBuffer values) {
    GL20.glVertexAttrib3f(index, values.get(), values.get(), values.get());
}

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

License:Open Source License

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