public static unsafe void GetInteger(this ExtMultiviewDrawBuffers thisApi, [Flow(FlowDirection.In)] GetPName target, [Flow(FlowDirection.In)] uint index, [Flow(FlowDirection.Out)] Span <int> data)
 {
     // SpanOverloader
     thisApi.GetInteger(target, index, out data.GetPinnableReference());
 }
 public static unsafe void DrawBuffersIndexed(this ExtMultiviewDrawBuffers thisApi, [Flow(FlowDirection.In)] int n, [Count(Parameter = "n"), Flow(FlowDirection.In)] ReadOnlySpan <EXT> location, [Count(Parameter = "n"), Flow(FlowDirection.In)] ReadOnlySpan <int> indices)
 {
     // SpanOverloader
     thisApi.DrawBuffersIndexed(n, in location.GetPinnableReference(), in indices.GetPinnableReference());
 }