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