Skip to content

Commit

Permalink
[dxvk] Use synchronization2 functions for timestamp queries
Browse files Browse the repository at this point in the history
Again not really making use of the new stage flags, but might as well
call the function. Oversight from earlier changes.
  • Loading branch information
doitsujin committed Jul 23, 2022
1 parent cb291f2 commit 9d8484f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dxvk/dxvk_cmdlist.h
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down

0 comments on commit 9d8484f

Please sign in to comment.