public static unsafe void GenFences(this AppleFence thisApi, [Flow(FlowDirection.In)] uint n, [Count(Parameter = "n"), Flow(FlowDirection.Out)] Span <uint> fences) { // SpanOverloader thisApi.GenFences(n, out fences.GetPinnableReference()); }
public static unsafe void DeleteFences(this AppleFence thisApi, [Flow(FlowDirection.In)] uint n, [Count(Parameter = "n"), Flow(FlowDirection.In)] ReadOnlySpan <uint> fences) { // SpanOverloader thisApi.DeleteFences(n, in fences.GetPinnableReference()); }