コード例 #1
0
 public static unsafe void GetCombinerStageParameter(this NVRegisterCombiners2 thisApi, [Flow(FlowDirection.In)] CombinerStageNV stage, [Flow(FlowDirection.In)] CombinerParameterNV pname, [Count(Computed = "pname"), Flow(FlowDirection.Out)] Span <float> @params)
 {
     // SpanOverloader
     thisApi.GetCombinerStageParameter(stage, pname, out @params.GetPinnableReference());
 }
コード例 #2
0
 public static unsafe void CombinerStageParameter(this NVRegisterCombiners2 thisApi, [Flow(FlowDirection.In)] NV stage, [Flow(FlowDirection.In)] NV pname, [Count(Computed = "pname"), Flow(FlowDirection.In)] ReadOnlySpan <float> @params)
 {
     // SpanOverloader
     thisApi.CombinerStageParameter(stage, pname, in @params.GetPinnableReference());
 }