glWeightubvArb function opengl_glext

void glWeightubvArb(
  1. int size,
  2. Pointer<Uint8> weights
)
GLAPI void APIENTRY glWeightubvARB (GLint size, const GLubyte *weights)

Implementation

void glWeightubvArb(int size, Pointer<Uint8> weights) {
  final glWeightubvArbAsFunction = _glWeightubvArb
      .cast<NativeFunction<Void Function(Int32 size, Pointer<Uint8> weights)>>()
      .asFunction<void Function(int size, Pointer<Uint8> weights)>();
  return glWeightubvArbAsFunction(size, weights);
}