public void CmdCopyQueryPoolResults(QueryPool queryPool, UInt32 firstQuery, UInt32 queryCount, VulkanBuffer dstBuffer, DeviceSize dstOffset, DeviceSize stride, QueryResultFlags flags = (QueryResultFlags)0) { unsafe { Interop.NativeMethods.vkCmdCopyQueryPoolResults(this.m, queryPool != null ? queryPool.m : default(UInt64), firstQuery, queryCount, dstBuffer != null ? dstBuffer.m : default(UInt64), dstOffset, stride, flags); } }
public void CmdWriteTimestamp(PipelineStageFlags pipelineStage, QueryPool queryPool, UInt32 query) { unsafe { Interop.NativeMethods.vkCmdWriteTimestamp(this.m, pipelineStage, queryPool != null ? queryPool.m : default(UInt64), query); } }
public void CmdEndQuery(QueryPool queryPool, UInt32 query) { unsafe { Interop.NativeMethods.vkCmdEndQuery(this.m, queryPool != null ? queryPool.m : default(UInt64), query); } }
public void CmdResetQueryPool(QueryPool queryPool, UInt32 firstQuery, UInt32 queryCount) { unsafe { Interop.NativeMethods.vkCmdResetQueryPool(this.m, queryPool != null ? queryPool.m : default(UInt64), firstQuery, queryCount); } }
public void CmdBeginQuery(QueryPool queryPool, UInt32 query, QueryControlFlags flags = (QueryControlFlags)0) { unsafe { Interop.NativeMethods.vkCmdBeginQuery(this.m, queryPool != null ? queryPool.m : default(UInt64), query, flags); } }