public static unsafe void GetActiveVarying(this NVTransformFeedback thisApi, [Flow(FlowDirection.In)] uint program, [Flow(FlowDirection.In)] uint index, [Flow(FlowDirection.In)] uint bufSize, [Count(Count = 1), Flow(FlowDirection.Out)] uint *length, [Count(Count = 1), Flow(FlowDirection.Out)] Span <uint> size, [Count(Count = 1), Flow(FlowDirection.Out)] Span <NV> type, [Count(Computed = "program, index, bufSize"), Flow(FlowDirection.Out)] Span <byte> name)
 {
     // SpanOverloader
     thisApi.GetActiveVarying(program, index, bufSize, length, out size.GetPinnableReference(), out type.GetPinnableReference(), out name.GetPinnableReference());
 }
 public static unsafe void GetActiveVarying(this NVTransformFeedback thisApi, [Flow(FlowDirection.In)] uint program, [Flow(FlowDirection.In)] uint index, [Flow(FlowDirection.In)] uint bufSize, [Count(Count = 1), Flow(FlowDirection.Out)] Span <uint> length, [Count(Count = 1), Flow(FlowDirection.Out)] uint *size, [Count(Count = 1), Flow(FlowDirection.Out)] NV *type, [Flow(FlowDirection.Out)] string name)
 {
     // SpanOverloader
     thisApi.GetActiveVarying(program, index, bufSize, out length.GetPinnableReference(), size, type, name);
 }
 public static unsafe void TransformFeedbackVaryings(this NVTransformFeedback thisApi, [Flow(FlowDirection.In)] uint program, [Flow(FlowDirection.In)] uint count, [Count(Parameter = "count"), Flow(FlowDirection.In)] ReadOnlySpan <int> locations, [Flow(FlowDirection.In)] NV bufferMode)
 {
     // SpanOverloader
     thisApi.TransformFeedbackVaryings(program, count, in locations.GetPinnableReference(), bufferMode);
 }
 public static unsafe void TransformFeedbackStreamAttrib(this NVTransformFeedback thisApi, [Flow(FlowDirection.In)] uint count, [Count(Parameter = "count"), Flow(FlowDirection.In)] ReadOnlySpan <int> attribs, [Flow(FlowDirection.In)] uint nbuffers, [Count(Parameter = "nbuffers"), Flow(FlowDirection.In)] ReadOnlySpan <int> bufstreams, [Flow(FlowDirection.In)] NV bufferMode)
 {
     // SpanOverloader
     thisApi.TransformFeedbackStreamAttrib(count, in attribs.GetPinnableReference(), nbuffers, in bufstreams.GetPinnableReference(), bufferMode);
 }
 public static unsafe void ActiveVarying(this NVTransformFeedback thisApi, [Flow(FlowDirection.In)] uint program, [Count(Computed = "name"), Flow(FlowDirection.In)] ReadOnlySpan <byte> name)
 {
     // SpanOverloader
     thisApi.ActiveVarying(program, in name.GetPinnableReference());
 }
 public static unsafe void TransformFeedbackAttrib(this NVTransformFeedback thisApi, [Flow(FlowDirection.In)] uint count, [Count(Computed = "count"), Flow(FlowDirection.In)] ReadOnlySpan <int> attribs, [Flow(FlowDirection.In)] NV bufferMode)
 {
     // SpanOverloader
     thisApi.TransformFeedbackAttrib(count, in attribs.GetPinnableReference(), bufferMode);
 }
 public static unsafe void GetTransformFeedbackVarying(this NVTransformFeedback thisApi, [Flow(FlowDirection.In)] uint program, [Flow(FlowDirection.In)] uint index, [Count(Count = 1), Flow(FlowDirection.Out)] Span <int> location)
 {
     // SpanOverloader
     thisApi.GetTransformFeedbackVarying(program, index, out location.GetPinnableReference());
 }