Example usage for org.lwjgl.opengl GL41 glProgramUniform3f

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

Introduction

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

Prototype

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

Source Link

Document

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

Usage

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

License:Open Source License

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