glIndexfv function opengl

void glIndexfv(
  1. Pointer<Float> c
)
GLAPI void GLAPIENTRY glIndexfv( const GLfloat *c )

Implementation

void glIndexfv(Pointer<Float> c) {
  final glIndexfvAsFunction = _glIndexfv
      .cast<NativeFunction<Void Function(Pointer<Float> c)>>()
      .asFunction<void Function(Pointer<Float> c)>();
  return glIndexfvAsFunction(c);
}