glWeightivArb function opengl_glext

void glWeightivArb(
  1. int size,
  2. Pointer<Int32> weights
)
GLAPI void APIENTRY glWeightivARB (GLint size, const GLint *weights)

Implementation

void glWeightivArb(int size, Pointer<Int32> weights) {
  final glWeightivArbAsFunction = _glWeightivArb
      .cast<NativeFunction<Void Function(Int32 size, Pointer<Int32> weights)>>()
      .asFunction<void Function(int size, Pointer<Int32> weights)>();
  return glWeightivArbAsFunction(size, weights);
}