Exemple #1
0
 public static unsafe void InvalidateSubFramebuffer(this ArbInvalidateSubdata thisApi, [Flow(FlowDirection.In)] FramebufferTarget target, [Flow(FlowDirection.In)] uint numAttachments, [Count(Parameter = "numAttachments"), Flow(FlowDirection.In)] ReadOnlySpan <InvalidateFramebufferAttachment> attachments, [Flow(FlowDirection.In)] int x, [Flow(FlowDirection.In)] int y, [Flow(FlowDirection.In)] uint width, [Flow(FlowDirection.In)] uint height)
 {
     // SpanOverloader
     thisApi.InvalidateSubFramebuffer(target, numAttachments, in attachments.GetPinnableReference(), x, y, width, height);
 }
Exemple #2
0
 public static unsafe void InvalidateFramebuffer(this ArbInvalidateSubdata thisApi, [Flow(FlowDirection.In)] ARB target, [Flow(FlowDirection.In)] uint numAttachments, [Count(Parameter = "numAttachments"), Flow(FlowDirection.In)] ReadOnlySpan <ARB> attachments)
 {
     // SpanOverloader
     thisApi.InvalidateFramebuffer(target, numAttachments, in attachments.GetPinnableReference());
 }