glIndexiv function
GLAPI void GLAPIENTRY glIndexiv (const GLint *c)
Implementation
void glIndexiv(Pointer<Int32> c) {
final glIndexivLookupFunction = libGL.lookupFunction<
Void Function(Pointer<Int32> c),
void Function(Pointer<Int32> c)>('glIndexiv');
return glIndexivLookupFunction(c);
}