Пример #1
0
 public static unsafe void GenVertexArrays(this OesVertexArrayObject thisApi, [Flow(FlowDirection.In)] uint n, [Count(Parameter = "n"), Flow(FlowDirection.Out)] Span <VertexArray> arrays)
 {
     // SpanOverloader
     thisApi.GenVertexArrays(n, out arrays.GetPinnableReference());
 }
Пример #2
0
 public static unsafe void DeleteVertexArrays(this OesVertexArrayObject thisApi, [Flow(FlowDirection.In)] uint n, [Count(Parameter = "n"), Flow(FlowDirection.In)] ReadOnlySpan <VertexArray> arrays)
 {
     // SpanOverloader
     thisApi.DeleteVertexArrays(n, in arrays.GetPinnableReference());
 }