uintVec4Setter method

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

Implementation

uintVec4Setter(OpenGLContextES gl, location) {
  return (v) {
    gl.uniform4uiv(location, v);
  };
}