glColorP3uiv function opengl_glext

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

Implementation

void glColorP3uiv(int type, Pointer<Uint32> color) {
  final glColorP3uivAsFunction = _glColorP3uiv
      .cast<NativeFunction<Void Function(Uint32 type, Pointer<Uint32> color)>>()
      .asFunction<void Function(int type, Pointer<Uint32> color)>();
  return glColorP3uivAsFunction(type, color);
}