uniform2f method

void uniform2f(
  1. UniformLocation location,
  2. double x,
  3. double y
)

Implementation

void uniform2f(UniformLocation location, double x, double y){
  startCheck('uniform2f');
  gl.glUniform2f(location.id, x, y);
  checkError('uniform2f');
}