glIndexubv function opengl
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);
}