public static unsafe void GenRenderbuffers(this ExtFramebufferObject thisApi, [Flow(FlowDirection.In)] uint n, [Count(Parameter = "n"), Flow(FlowDirection.Out)] Span <Renderbuffer> renderbuffers) { // SpanOverloader thisApi.GenRenderbuffers(n, out renderbuffers.GetPinnableReference()); }
public static unsafe void GetFramebufferAttachmentParameter(this ExtFramebufferObject thisApi, [Flow(FlowDirection.In)] FramebufferTarget target, [Flow(FlowDirection.In)] EXT attachment, [Flow(FlowDirection.In)] FramebufferAttachmentParameterName pname, [Count(Computed = "pname"), Flow(FlowDirection.Out)] Span <int> @params) { // SpanOverloader thisApi.GetFramebufferAttachmentParameter(target, attachment, pname, out @params.GetPinnableReference()); }
public static unsafe void DeleteRenderbuffers(this ExtFramebufferObject thisApi, [Flow(FlowDirection.In)] uint n, [Count(Parameter = "n"), Flow(FlowDirection.In)] ReadOnlySpan <uint> renderbuffers) { // SpanOverloader thisApi.DeleteRenderbuffers(n, in renderbuffers.GetPinnableReference()); }