Ejemplo n.º 1
0
 /// <summary>To be documented.</summary>
 public static unsafe void DestroyPrivateDataSlot(this ExtPrivateData thisApi, [Count(Count = 0)] Device device, [Count(Count = 0)] PrivateDataSlotEXT privateDataSlot, [Count(Count = 0), Flow(FlowDirection.In)] ReadOnlySpan <AllocationCallbacks> pAllocator)
 {
     // SpanOverloader
     thisApi.DestroyPrivateDataSlot(device, privateDataSlot, in pAllocator.GetPinnableReference());
 }
Ejemplo n.º 2
0
 /// <summary>To be documented.</summary>
 public static unsafe void GetPrivateData(this ExtPrivateData thisApi, [Count(Count = 0)] Device device, [Count(Count = 0)] ObjectType objectType, [Count(Count = 0)] ulong objectHandle, [Count(Count = 0)] PrivateDataSlotEXT privateDataSlot, [Count(Count = 0), Flow(FlowDirection.Out)] Span <ulong> pData)
 {
     // SpanOverloader
     thisApi.GetPrivateData(device, objectType, objectHandle, privateDataSlot, out pData.GetPinnableReference());
 }
Ejemplo n.º 3
0
 /// <summary>To be documented.</summary>
 public static unsafe Result CreatePrivateDataSlot(this ExtPrivateData thisApi, [Count(Count = 0)] Device device, [Count(Count = 0), Flow(FlowDirection.In)] ReadOnlySpan <PrivateDataSlotCreateInfoEXT> pCreateInfo, [Count(Count = 0), Flow(FlowDirection.In)] ReadOnlySpan <AllocationCallbacks> pAllocator, [Count(Count = 0), Flow(FlowDirection.Out)] Span <PrivateDataSlotEXT> pPrivateDataSlot)
 {
     // SpanOverloader
     return(thisApi.CreatePrivateDataSlot(device, in pCreateInfo.GetPinnableReference(), in pAllocator.GetPinnableReference(), out pPrivateDataSlot.GetPinnableReference()));
 }