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