glUniform4f method

void glUniform4f(
  1. int location,
  2. double x,
  3. double y,
  4. double z,
  5. double w,
)

Implementation

void glUniform4f(int location, double x, double y, double z, double w){
  gl.uniform4f(location, x, y, z,w);
}