glIndexd function

void glIndexd(
  1. double c
)
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);
}