glIndexf function

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