glColor4ubv function

void glColor4ubv(
  1. Pointer<Uint8> v
)
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);
}