From 9d8484f2e9ce2a1ce6d605088ea0f3ffb1b89881 Mon Sep 17 00:00:00 2001 From: Philip Rebohle Date: Sat, 23 Jul 2022 15:31:43 +0200 Subject: [PATCH] [dxvk] Use synchronization2 functions for timestamp queries Again not really making use of the new stage flags, but might as well call the function. Oversight from earlier changes. --- src/dxvk/dxvk_cmdlist.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dxvk/dxvk_cmdlist.h b/src/dxvk/dxvk_cmdlist.h index f58f725d2..1e8625396 100644 --- a/src/dxvk/dxvk_cmdlist.h +++ b/src/dxvk/dxvk_cmdlist.h @@ -762,10 +762,10 @@ namespace dxvk { void cmdWriteTimestamp( - VkPipelineStageFlagBits pipelineStage, + VkPipelineStageFlagBits2 pipelineStage, VkQueryPool queryPool, uint32_t query) { - m_vkd->vkCmdWriteTimestamp(m_execBuffer, + m_vkd->vkCmdWriteTimestamp2(m_execBuffer, pipelineStage, queryPool, query); }