/// <summary>To be documented.</summary> public static unsafe void DestroyDeferredOperation(this KhrDeferredHostOperations thisApi, [Count(Count = 0)] Device device, [Count(Count = 0)] DeferredOperationKHR operation, [Count(Count = 0), Flow(FlowDirection.In)] ReadOnlySpan <AllocationCallbacks> pAllocator) { // SpanOverloader thisApi.DestroyDeferredOperation(device, operation, in pAllocator.GetPinnableReference()); }
/// <summary>To be documented.</summary> public static unsafe Result CreateDeferredOperation(this KhrDeferredHostOperations thisApi, [Count(Count = 0)] Device device, [Count(Count = 0), Flow(FlowDirection.In)] ReadOnlySpan <AllocationCallbacks> pAllocator, [Count(Count = 0), Flow(FlowDirection.Out)] Span <DeferredOperationKHR> pDeferredOperation) { // SpanOverloader return(thisApi.CreateDeferredOperation(device, in pAllocator.GetPinnableReference(), out pDeferredOperation.GetPinnableReference())); }