glWeightdvArb function opengl_glext
GLAPI void APIENTRY glWeightdvARB (GLint size, const GLdouble *weights)
Implementation
void glWeightdvArb(int size, Pointer<Double> weights) {
  final glWeightdvArbAsFunction = _glWeightdvArb
      .cast<
        NativeFunction<Void Function(Int32 size, Pointer<Double> weights)>
      >()
      .asFunction<void Function(int size, Pointer<Double> weights)>();
  return glWeightdvArbAsFunction(size, weights);
}