Example usage for org.lwjgl.opengl GL41 glProgramUniform4f

List of usage examples for org.lwjgl.opengl GL41 glProgramUniform4f

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL41 glProgramUniform4f.

Prototype

public static void glProgramUniform4f(@NativeType("GLuint") int program, @NativeType("GLint") int location,
        @NativeType("GLfloat") float x, @NativeType("GLfloat") float y, @NativeType("GLfloat") float z,
        @NativeType("GLfloat") float w) 

Source Link

Document

Specifies the value of a vec4 uniform variable for a specified program object.

Usage

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

License:Open Source License

public static void glProgramUniform4f(int a, int b, float c, float d, float e, float f) {
    GL41.glProgramUniform4f(a, b, c, d, e, f);
}