glIndexub function

void glIndexub(
  1. int c
)
GLAPI void GLAPIENTRY glIndexub (GLubyte c)

Implementation

void glIndexub(int c) {
  final glIndexubLookupFunction =
      libGL.lookupFunction<Void Function(Uint8 c), void Function(int c)>(
          'glIndexub');
  return glIndexubLookupFunction(c);
}