glIndexf function opengl
GLAPI void GLAPIENTRY glIndexf( GLfloat c )
Implementation
void glIndexf(double c) {
  final glIndexfAsFunction = _glIndexf
      .cast<NativeFunction<Void Function(Float c)>>()
      .asFunction<void Function(double c)>();
  return glIndexfAsFunction(c);
}