diff options
author | bunnei <bunneidev@gmail.com> | 2021-02-14 00:20:41 -0800 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2021-02-14 00:20:41 -0800 |
commit | eae9f2e4404f6bdf8a192bc9c09e53cd87e4359d (patch) | |
tree | 3f5cfe0d7067853437249cd167e79d9299c984b1 /src/video_core/shader | |
parent | 0bbf5e61f107ce6b54078ec30504034ab9af5596 (diff) |
yuzu: Various frontend improvements to avoid crashes and improve experience on Linux.
Diffstat (limited to 'src/video_core/shader')
-rw-r--r-- | src/video_core/shader/async_shaders.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/video_core/shader/async_shaders.cpp b/src/video_core/shader/async_shaders.cpp index 3b40db9bc..02adcf9c7 100644 --- a/src/video_core/shader/async_shaders.cpp +++ b/src/video_core/shader/async_shaders.cpp @@ -64,6 +64,7 @@ void AsyncShaders::FreeWorkers() { void AsyncShaders::KillWorkers() { is_thread_exiting.store(true); + cv.notify_all(); for (auto& thread : worker_threads) { thread.detach(); } |