Example #1
0
 public static unsafe void PixelTransformParameter(this ExtPixelTransform thisApi, [Flow(FlowDirection.In)] PixelTransformTargetEXT target, [Flow(FlowDirection.In)] PixelTransformPNameEXT pname, [Count(Count = 1), Flow(FlowDirection.In)] ReadOnlySpan <float> @params)
 {
     // SpanOverloader
     thisApi.PixelTransformParameter(target, pname, in @params.GetPinnableReference());
 }
Example #2
0
 public static unsafe void GetPixelTransformParameter(this ExtPixelTransform thisApi, [Flow(FlowDirection.In)] EXT target, [Flow(FlowDirection.In)] EXT pname, [Count(Computed = "pname"), Flow(FlowDirection.Out)] Span <float> @params)
 {
     // SpanOverloader
     thisApi.GetPixelTransformParameter(target, pname, out @params.GetPinnableReference());
 }