glIndexf function opengl

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