glIndexfv function
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);
}