glIndexs function
GLAPI void GLAPIENTRY glIndexs (GLshort c)
Implementation
void glIndexs(int c) {
final glIndexsLookupFunction = libGL
.lookupFunction<Void Function(Int16 c), void Function(int c)>('glIndexs');
return glIndexsLookupFunction(c);
}