public static unsafe void GenTransformFeedbacks(this NVTransformFeedback2 thisApi, [Flow(FlowDirection.In)] uint n, [Count(Parameter = "n"), Flow(FlowDirection.Out)] Span <TransformFeedback> ids)
 {
     // SpanOverloader
     thisApi.GenTransformFeedbacks(n, out ids.GetPinnableReference());
 }
 public static unsafe void DeleteTransformFeedbacks(this NVTransformFeedback2 thisApi, [Flow(FlowDirection.In)] uint n, [Count(Parameter = "n"), Flow(FlowDirection.In)] ReadOnlySpan <TransformFeedback> ids)
 {
     // SpanOverloader
     thisApi.DeleteTransformFeedbacks(n, in ids.GetPinnableReference());
 }