glColorP4uiv function opengl_glext

void glColorP4uiv(
  1. int type,
  2. Pointer<Uint32> color
)
GLAPI void APIENTRY glColorP4uiv (GLenum type, const GLuint *color)

Implementation

void glColorP4uiv(int type, Pointer<Uint32> color) {
  final glColorP4uivAsFunction = _glColorP4uiv
      .cast<NativeFunction<Void Function(Uint32 type, Pointer<Uint32> color)>>()
      .asFunction<void Function(int type, Pointer<Uint32> color)>();
  return glColorP4uivAsFunction(type, color);
}