summaryrefslogtreecommitdiff
path: root/src/video_core/renderer_vulkan
diff options
context:
space:
mode:
authorGravatar Liam2022-07-29 23:33:40 -0400
committerGravatar Liam2022-07-29 23:33:40 -0400
commitfc013d88cb9c1fd6ba2ada03aba2822419831584 (patch)
treeff3090354d8eb23c0ea3dc840045949f1089a87c /src/video_core/renderer_vulkan
parentMerge pull request #8665 from liamwhite/github-is-dumb (diff)
downloadyuzu-fc013d88cb9c1fd6ba2ada03aba2822419831584.tar.gz
yuzu-fc013d88cb9c1fd6ba2ada03aba2822419831584.tar.xz
yuzu-fc013d88cb9c1fd6ba2ada03aba2822419831584.zip
video_core: stop waiting for shader compilation on user cancel
Diffstat (limited to 'src/video_core/renderer_vulkan')
-rw-r--r--src/video_core/renderer_vulkan/vk_pipeline_cache.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp b/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp
index 09e035799..43cc94fab 100644
--- a/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp
+++ b/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp
@@ -452,7 +452,7 @@ void PipelineCache::LoadDiskResources(u64 title_id, std::stop_token stop_loading
452 state.has_loaded = true; 452 state.has_loaded = true;
453 lock.unlock(); 453 lock.unlock();
454 454
455 workers.WaitForRequests(); 455 workers.WaitForRequests(stop_loading);
456 456
457 if (state.statistics) { 457 if (state.statistics) {
458 state.statistics->Report(); 458 state.statistics->Report();