Ejemplo n.º 1
0
 public static extern void vkCmdCopyQueryPoolResults(SharpVk.Interop.CommandBuffer commandBuffer, SharpVk.Interop.QueryPool queryPool, uint firstQuery, uint queryCount, SharpVk.Interop.Buffer destinationBuffer, DeviceSize destinationOffset, DeviceSize stride, SharpVk.QueryResultFlags flags);
Ejemplo n.º 2
0
 public static extern void vkCmdResetQueryPool(SharpVk.Interop.CommandBuffer commandBuffer, SharpVk.Interop.QueryPool queryPool, uint firstQuery, uint queryCount);
Ejemplo n.º 3
0
 public static extern void vkCmdWriteTimestamp(SharpVk.Interop.CommandBuffer commandBuffer, SharpVk.PipelineStageFlags pipelineStage, SharpVk.Interop.QueryPool queryPool, uint query);
Ejemplo n.º 4
0
 public static extern void vkCmdEndQuery(SharpVk.Interop.CommandBuffer commandBuffer, SharpVk.Interop.QueryPool queryPool, uint query);
Ejemplo n.º 5
0
 public static extern void vkCmdBeginQuery(SharpVk.Interop.CommandBuffer commandBuffer, SharpVk.Interop.QueryPool queryPool, uint query, SharpVk.QueryControlFlags flags);
Ejemplo n.º 6
0
 public static extern SharpVk.Result vkGetQueryPoolResults(SharpVk.Interop.Device device, SharpVk.Interop.QueryPool queryPool, uint firstQuery, uint queryCount, HostSize dataSize, void *data, DeviceSize stride, SharpVk.QueryResultFlags flags);
Ejemplo n.º 7
0
 public static extern void vkDestroyQueryPool(SharpVk.Interop.Device device, SharpVk.Interop.QueryPool queryPool, SharpVk.Interop.AllocationCallbacks *allocator);
Ejemplo n.º 8
0
 internal QueryPool(SharpVk.Device parent, SharpVk.Interop.QueryPool handle)
 {
     this.handle       = handle;
     this.parent       = parent;
     this.commandCache = parent.commandCache;
 }