Пример #1
0
 public abstract void PixelDataRange <T0>([Flow(FlowDirection.In)] PixelDataRangeTargetNV target, [Flow(FlowDirection.In)] uint length, [Count(Parameter = "length"), Flow(FlowDirection.In)] Span <T0> pointer) where T0 : unmanaged;
Пример #2
0
 public abstract unsafe void PixelDataRange([Flow(FlowDirection.In)] PixelDataRangeTargetNV target, [Flow(FlowDirection.In)] uint length, [Count(Parameter = "length"), Flow(FlowDirection.In)] void *pointer);
Пример #3
0
 public partial void FlushPixelDataRange([Flow(FlowDirection.In)] PixelDataRangeTargetNV target);
Пример #4
0
 public abstract void FlushPixelDataRange([Flow(FlowDirection.In)] PixelDataRangeTargetNV target);
 public static unsafe void PixelDataRange <T0>(this NVPixelDataRange thisApi, [Flow(FlowDirection.In)] PixelDataRangeTargetNV target, [Flow(FlowDirection.In)] uint length, [Count(Parameter = "length"), Flow(FlowDirection.In)] ReadOnlySpan <T0> pointer) where T0 : unmanaged
 {
     // SpanOverloader
     thisApi.PixelDataRange(target, length, in pointer.GetPinnableReference());
 }