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