glColorP3ui function opengl_glext
GLAPI void APIENTRY glColorP3ui (GLenum type, GLuint color)
Implementation
void glColorP3ui(int type, int color) {
final glColorP3uiAsFunction = _glColorP3ui
.cast<NativeFunction<Void Function(Uint32 type, Uint32 color)>>()
.asFunction<void Function(int type, int color)>();
return glColorP3uiAsFunction(type, color);
}