Exemple #1
0
 public unsafe partial Result GetPipelineExecutableInternalRepresentation([Count(Count = 0)] Device device, [Count(Count = 0), Flow(FlowDirection.In)] PipelineExecutableInfoKHR *pExecutableInfo, [Count(Count = 0)] ref uint pInternalRepresentationCount, [Count(Computed = "pInternalRepresentationCount"), Flow(FlowDirection.Out)] out PipelineExecutableInternalRepresentationKHR pInternalRepresentations);
Exemple #2
0
 /// <summary>To be documented.</summary>
 public static unsafe Result GetPipelineExecutableInternalRepresentation(this KhrPipelineExecutableProperties thisApi, [Count(Count = 0)] Device device, [Count(Count = 0), Flow(FlowDirection.In)] PipelineExecutableInfoKHR *pExecutableInfo, [Count(Count = 0)] Span <uint> pInternalRepresentationCount, [Count(Computed = "pInternalRepresentationCount"), Flow(FlowDirection.Out)] Span <PipelineExecutableInternalRepresentationKHR> pInternalRepresentations)
 {
     // SpanOverloader
     return(thisApi.GetPipelineExecutableInternalRepresentation(device, pExecutableInfo, ref pInternalRepresentationCount.GetPinnableReference(), out pInternalRepresentations.GetPinnableReference()));
 }
Exemple #3
0
 /// <summary>To be documented.</summary>
 public static unsafe Result GetPipelineExecutableStatistic(this KhrPipelineExecutableProperties thisApi, [Count(Count = 0)] Device device, [Count(Count = 0), Flow(FlowDirection.In)] PipelineExecutableInfoKHR *pExecutableInfo, [Count(Count = 0)] Span <uint> pStatisticCount, [Count(Computed = "pStatisticCount"), Flow(FlowDirection.Out)] PipelineExecutableStatisticKHR *pStatistics)
 {
     // SpanOverloader
     return(thisApi.GetPipelineExecutableStatistic(device, pExecutableInfo, ref pStatisticCount.GetPinnableReference(), pStatistics));
 }
 public abstract unsafe Result GetPipelineExecutableStatistic([Count(Count = 0)] Device device, [Count(Count = 0), Flow(FlowDirection.In)] PipelineExecutableInfoKHR *pExecutableInfo, [Count(Count = 0)] uint *pStatisticCount, [Count(Computed = "pStatisticCount"), Flow(FlowDirection.Out)] PipelineExecutableStatisticKHR *pStatistics);
 public abstract unsafe Result GetPipelineExecutableInternalRepresentation([Count(Count = 0)] Device device, [Count(Count = 0), Flow(FlowDirection.In)] PipelineExecutableInfoKHR *pExecutableInfo, [Count(Count = 0)] uint *pInternalRepresentationCount, [Count(Computed = "pInternalRepresentationCount"), Flow(FlowDirection.Out)] PipelineExecutableInternalRepresentationKHR *pInternalRepresentations);
Exemple #6
0
 public static unsafe Result GetPipelineExecutableStatistic(this KhrPipelineExecutableProperties thisApi, [Count(Count = 0)] Device device, [Count(Count = 0), Flow(FlowDirection.In)] PipelineExecutableInfoKHR* pExecutableInfo, [Count(Count = 0)] uint* pStatisticCount, [Count(Parameter = "pStatisticCount"), Flow(FlowDirection.Out)] Span<PipelineExecutableStatisticKHR> pStatistics)
 {
     // SpanOverloader
     return thisApi.GetPipelineExecutableStatistic(device, pExecutableInfo, pStatisticCount, out pStatistics.GetPinnableReference());
 }