glIndexub function
GLAPI void GLAPIENTRY glIndexub (GLubyte c)
Implementation
void glIndexub(int c) {
final glIndexubLookupFunction =
libGL.lookupFunction<Void Function(Uint8 c), void Function(int c)>(
'glIndexub');
return glIndexubLookupFunction(c);
}