glIndexfv function

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

Implementation

void glIndexfv(Pointer<Float> c) {
  final glIndexfvLookupFunction = libGL.lookupFunction<
      Void Function(Pointer<Float> c),
      void Function(Pointer<Float> c)>('glIndexfv');
  return glIndexfvLookupFunction(c);
}