glColor4ubv function
GLAPI void GLAPIENTRY glColor4ubv (const GLubyte *v)
Implementation
void glColor4ubv(Pointer<Uint8> v) {
final glColor4ubvLookupFunction = libGL.lookupFunction<
Void Function(Pointer<Uint8> v),
void Function(Pointer<Uint8> v)>('glColor4ubv');
return glColor4ubvLookupFunction(v);
}