glColor3ubv function

void glColor3ubv(
  1. Pointer<Uint8> v
)
GLAPI void GLAPIENTRY glColor3ubv (const GLubyte *v)

Implementation

void glColor3ubv(Pointer<Uint8> v) {
  final glColor3ubvLookupFunction = libGL.lookupFunction<
      Void Function(Pointer<Uint8> v),
      void Function(Pointer<Uint8> v)>('glColor3ubv');
  return glColor3ubvLookupFunction(v);
}