/// <summary>To be documented.</summary> public static unsafe Result InitializePerformanceAp(this IntelPerformanceQuery thisApi, [Count(Count = 0)] Device device, [Count(Count = 0), Flow(FlowDirection.In)] ReadOnlySpan <InitializePerformanceApiInfoINTEL> pInitializeInfo) { // SpanOverloader return(thisApi.InitializePerformanceAp(device, in pInitializeInfo.GetPinnableReference())); }
/// <summary>To be documented.</summary> public static unsafe Result CmdSetPerformanceStreamMarker(this IntelPerformanceQuery thisApi, [Count(Count = 0)] CommandBuffer commandBuffer, [Count(Count = 0), Flow(FlowDirection.In)] ReadOnlySpan <PerformanceStreamMarkerInfoINTEL> pMarkerInfo) { // SpanOverloader return(thisApi.CmdSetPerformanceStreamMarker(commandBuffer, in pMarkerInfo.GetPinnableReference())); }
/// <summary>To be documented.</summary> public static unsafe Result GetPerformanceParameter(this IntelPerformanceQuery thisApi, [Count(Count = 0)] Device device, [Count(Count = 0)] PerformanceParameterTypeINTEL parameter, [Count(Count = 0), Flow(FlowDirection.Out)] Span <PerformanceValueINTEL> pValue) { // SpanOverloader return(thisApi.GetPerformanceParameter(device, parameter, out pValue.GetPinnableReference())); }
/// <summary>To be documented.</summary> public static unsafe Result AcquirePerformanceConfiguration(this IntelPerformanceQuery thisApi, [Count(Count = 0)] Device device, [Count(Count = 0), Flow(FlowDirection.In)] ReadOnlySpan <PerformanceConfigurationAcquireInfoINTEL> pAcquireInfo, [Count(Count = 0)] Span <PerformanceConfigurationINTEL> pConfiguration) { // SpanOverloader return(thisApi.AcquirePerformanceConfiguration(device, in pAcquireInfo.GetPinnableReference(), ref pConfiguration.GetPinnableReference())); }