glIndexub function opengl

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

Implementation

void glIndexub(int c) {
  final glIndexubAsFunction = _glIndexub
      .cast<NativeFunction<Void Function(Uint8 c)>>()
      .asFunction<void Function(int c)>();
  return glIndexubAsFunction(c);
}