glWeightuivArb function opengl_glext

void glWeightuivArb(
  1. int size,
  2. Pointer<Uint32> weights
)
GLAPI void APIENTRY glWeightuivARB (GLint size, const GLuint *weights)

Implementation

void glWeightuivArb(int size, Pointer<Uint32> weights) {
  final glWeightuivArbAsFunction = _glWeightuivArb
      .cast<
        NativeFunction<Void Function(Int32 size, Pointer<Uint32> weights)>
      >()
      .asFunction<void Function(int size, Pointer<Uint32> weights)>();
  return glWeightuivArbAsFunction(size, weights);
}