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