glWindowPos2dvArb function opengl_glext

void glWindowPos2dvArb(
  1. Pointer<Double> v
)
GLAPI void APIENTRY glWindowPos2dvARB (const GLdouble *v)

Implementation

void glWindowPos2dvArb(Pointer<Double> v) {
  final glWindowPos2dvArbAsFunction = _glWindowPos2dvArb
      .cast<NativeFunction<Void Function(Pointer<Double> v)>>()
      .asFunction<void Function(Pointer<Double> v)>();
  return glWindowPos2dvArbAsFunction(v);
}