uintVec2Setter method

dynamic uintVec2Setter(
  1. OpenGLContextES gl,
  2. dynamic location
)

Implementation

uintVec2Setter(OpenGLContextES gl, location) {
  return (v) {
    gl.uniform2uiv(location, v);
  };
}