[vulkan] Get tick with Flush, remove redundant call to CurrentTick.

This commit is contained in:
weakboson 2025-07-26 23:10:58 +08:00
parent 57c4859da4
commit 2112c4a3aa

View file

@ -22,8 +22,7 @@ void InnerFence::Queue() {
return;
}
// Get the current tick so we can wait for it
wait_tick = scheduler.CurrentTick();
scheduler.Flush();
wait_tick = scheduler.Flush();
}
bool InnerFence::IsSignaled() const {