Example usage for org.lwjgl.opengl GL20 glVertexAttrib1f

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

Introduction

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

Prototype

public static void glVertexAttrib1f(@NativeType("GLuint") int index, @NativeType("GLfloat") float v0) 

Source Link

Document

Specifies the value of a generic vertex attribute.

Usage

From source file:com.badlogic.gdx.backends.jglfw.JglfwGL20.java

License:Apache License

public void glVertexAttrib1f(int indx, float x) {
    GL20.glVertexAttrib1f(indx, x);
}

From source file:com.badlogic.gdx.backends.lwjgl.LwjglGL20.java

License:Apache License

public void glVertexAttrib1fv(int indx, FloatBuffer values) {
    GL20.glVertexAttrib1f(indx, values.get());
}

From source file:io.root.gfx.glutils.GL.java

License:Apache License

public static void glVertexAttrib1f(int indx, float x) {
    GL20.glVertexAttrib1f(indx, x);
}

From source file:io.root.gfx.glutils.GL.java

License:Apache License

public static void glVertexAttrib1fv(int indx, FloatBuffer values) {
    GL20.glVertexAttrib1f(indx, values.get());
}

From source file:net.smert.frameworkgl.opengl.OpenGL2.java

License:Apache License

public void vertexAttrib(int index, float x) {
    GL20.glVertexAttrib1f(index, x);
}

From source file:org.oscim.gdx.LwjglGL20.java

License:Apache License

public void vertexAttrib1f(int indx, float x) {
    GL20.glVertexAttrib1f(indx, x);
}

From source file:org.oscim.gdx.LwjglGL20.java

License:Apache License

public void vertexAttrib1fv(int indx, FloatBuffer values) {
    GL20.glVertexAttrib1f(indx, values.get());
}

From source file:playn.java.JavaGL20.java

License:Apache License

@Override
public void glVertexAttrib1f(int indx, float x) {
    GL20.glVertexAttrib1f(indx, x);
}

From source file:playn.java.JavaGL20.java

License:Apache License

@Override
public void glVertexAttrib1fv(int indx, FloatBuffer values) {
    GL20.glVertexAttrib1f(indx, values.get());
}

From source file:processing.lwjgl.PGL.java

License:Open Source License

public void vertexAttrib1f(int loc, float value) {
    GL20.glVertexAttrib1f(loc, value);
}