예제 #1
0
 public static unsafe void GenRenderbuffers(this ArbFramebufferObject thisApi, [Flow(FlowDirection.In)] uint n, [Count(Parameter = "n"), Flow(FlowDirection.Out)] Span <uint> renderbuffers)
 {
     // SpanOverloader
     thisApi.GenRenderbuffers(n, out renderbuffers.GetPinnableReference());
 }
예제 #2
0
 public static unsafe void GetRenderbufferParameter(this ArbFramebufferObject thisApi, [Flow(FlowDirection.In)] ARB target, [Flow(FlowDirection.In)] RenderbufferParameterName pname, [Count(Computed = "pname"), Flow(FlowDirection.Out)] Span <int> @params)
 {
     // SpanOverloader
     thisApi.GetRenderbufferParameter(target, pname, out @params.GetPinnableReference());
 }
예제 #3
0
 public static unsafe void DeleteRenderbuffers(this ArbFramebufferObject thisApi, [Flow(FlowDirection.In)] uint n, [Count(Parameter = "n"), Flow(FlowDirection.In)] ReadOnlySpan <uint> renderbuffers)
 {
     // SpanOverloader
     thisApi.DeleteRenderbuffers(n, in renderbuffers.GetPinnableReference());
 }