コード例 #1
0
 public static unsafe void FogCoordPointer <T0>(this ExtFogCoord thisApi, [Flow(FlowDirection.In)] FogPointerTypeEXT type, [Flow(FlowDirection.In)] uint stride, [Count(Computed = "type, stride"), Flow(FlowDirection.In)] ReadOnlySpan <T0> pointer) where T0 : unmanaged
 {
     // SpanOverloader
     thisApi.FogCoordPointer(type, stride, in pointer.GetPinnableReference());
 }
コード例 #2
0
 public static unsafe void FogCoord(this ExtFogCoord thisApi, [Count(Count = 1), Flow(FlowDirection.In)] ReadOnlySpan <double> coord)
 {
     // SpanOverloader
     thisApi.FogCoord(in coord.GetPinnableReference());
 }