1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-01-19 05:52:11 +01:00

[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

View File

@ -762,10 +762,10 @@ namespace dxvk {
void cmdWriteTimestamp( void cmdWriteTimestamp(
VkPipelineStageFlagBits pipelineStage, VkPipelineStageFlagBits2 pipelineStage,
VkQueryPool queryPool, VkQueryPool queryPool,
uint32_t query) { uint32_t query) {
m_vkd->vkCmdWriteTimestamp(m_execBuffer, m_vkd->vkCmdWriteTimestamp2(m_execBuffer,
pipelineStage, queryPool, query); pipelineStage, queryPool, query);
} }