Browse Source

Vulkan: fix waiting on semaphore.

nce_cpp
FernandoS27 4 years ago
committed by Fernando Sahmkow
parent
commit
6db528fb65
  1. 4
      src/video_core/renderer_vulkan/vk_master_semaphore.h

4
src/video_core/renderer_vulkan/vk_master_semaphore.h

@ -70,7 +70,9 @@ public:
return; return;
} }
// If none of the above is hit, fallback to a regular wait // If none of the above is hit, fallback to a regular wait
semaphore.Wait(tick);
while (!semaphore.Wait(tick)) {
}
Refresh();
} }
private: private:

Loading…
Cancel
Save