glIndexsv function
GLAPI void GLAPIENTRY glIndexsv (const GLshort *c)
Implementation
void glIndexsv(Pointer<Int16> c) {
final glIndexsvLookupFunction = libGL.lookupFunction<
Void Function(Pointer<Int16> c),
void Function(Pointer<Int16> c)>('glIndexsv');
return glIndexsvLookupFunction(c);
}