[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.
This commit is contained in:
Philip Rebohle 2022-07-23 15:31:43 +02:00
parent cb291f29a1
commit 9d8484f2e9
No known key found for this signature in database
GPG Key ID: C8CC613427A31C99
1 changed files with 2 additions and 2 deletions

View File

@ -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);
}