glClearIndex function
GLAPI void GLAPIENTRY glClearIndex (GLfloat c)
Implementation
void glClearIndex(double c) {
final glClearIndexLookupFunction =
libGL.lookupFunction<Void Function(Float c), void Function(double c)>(
'glClearIndex');
return glClearIndexLookupFunction(c);
}