glWeightfvArb function opengl_glext
GLAPI void APIENTRY glWeightfvARB (GLint size, const GLfloat *weights)
Implementation
void glWeightfvArb(int size, Pointer<Float> weights) {
  final glWeightfvArbAsFunction = _glWeightfvArb
      .cast<NativeFunction<Void Function(Int32 size, Pointer<Float> weights)>>()
      .asFunction<void Function(int size, Pointer<Float> weights)>();
  return glWeightfvArbAsFunction(size, weights);
}