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