glWeightfvArb function opengl_glext

void glWeightfvArb(
  1. int size,
  2. Pointer<Float> weights
)
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);
}