glIndexubv function opengl

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

Implementation

void glIndexubv(Pointer<Uint8> c) {
  final glIndexubvAsFunction = _glIndexubv
      .cast<NativeFunction<Void Function(Pointer<Uint8> c)>>()
      .asFunction<void Function(Pointer<Uint8> c)>();
  return glIndexubvAsFunction(c);
}