glUniform2f method

void glUniform2f(
  1. int location,
  2. double x,
  3. double y
)

Implementation

void glUniform2f(int location, double x, double y){
  gl.uniform2f(location, x, y);
}