glWeightdvArb function opengl_glext

void glWeightdvArb(
  1. int size,
  2. Pointer<Double> weights
)
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);
}