Exemple #1
0
 public static unsafe void MatrixIndexPointer <T0>(this ArbMatrixPalette thisApi, [Flow(FlowDirection.In)] int size, [Flow(FlowDirection.In)] MatrixIndexPointerTypeARB type, [Flow(FlowDirection.In)] uint stride, [Count(Computed = "size, type, stride"), Flow(FlowDirection.In)] ReadOnlySpan <T0> pointer) where T0 : unmanaged
 {
     // SpanOverloader
     thisApi.MatrixIndexPointer(size, type, stride, in pointer.GetPinnableReference());
 }
Exemple #2
0
 public static unsafe void MatrixIndex(this ArbMatrixPalette thisApi, [Flow(FlowDirection.In)] int size, [Count(Parameter = "size"), Flow(FlowDirection.In)] ReadOnlySpan <uint> indices)
 {
     // SpanOverloader
     thisApi.MatrixIndex(size, in indices.GetPinnableReference());
 }