glIndexd function
GLAPI void GLAPIENTRY glIndexd (GLdouble c)
Implementation
void glIndexd(double c) {
final glIndexdLookupFunction =
libGL.lookupFunction<Void Function(Double c), void Function(double c)>(
'glIndexd');
return glIndexdLookupFunction(c);
}