glIndexiv function opengl
GLAPI void GLAPIENTRY glIndexiv( const GLint *c )
Implementation
void glIndexiv(Pointer<Int32> c) {
final glIndexivAsFunction = _glIndexiv
.cast<NativeFunction<Void Function(Pointer<Int32> c)>>()
.asFunction<void Function(Pointer<Int32> c)>();
return glIndexivAsFunction(c);
}