glWeightubvArb function opengl_glext
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);
}