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