glIndexubv function

void glIndexubv(
  1. Pointer<Uint8> c
)
GLAPI void GLAPIENTRY glIndexubv (const GLubyte *c)

Implementation

void glIndexubv(Pointer<Uint8> c) {
  final glIndexubvLookupFunction = libGL.lookupFunction<
      Void Function(Pointer<Uint8> c),
      void Function(Pointer<Uint8> c)>('glIndexubv');
  return glIndexubvLookupFunction(c);
}