diff options
author | David Marcec <dmarcecguzman@gmail.com> | 2020-07-16 18:51:32 +1000 |
---|---|---|
committer | David Marcec <dmarcecguzman@gmail.com> | 2020-07-17 14:26:18 +1000 |
commit | 85b591f6f073caa0c36f4e13f63069787b44b487 (patch) | |
tree | da98910b6af8a4331ad752496929ebeab4a3d8cf /src/video_core | |
parent | f48187449ed4772044da55a8a3745d578c1b8c48 (diff) |
Remove duplicate config
Diffstat (limited to 'src/video_core')
-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 84d86c32f..64fad46e7 100644 --- a/src/video_core/shader/async_shaders.cpp +++ b/src/video_core/shader/async_shaders.cpp @@ -36,6 +36,7 @@ void AsyncShaders::AllocateWorkers(std::size_t num_workers) { void AsyncShaders::FreeWorkers() { // Mark all threads to quit is_thread_exiting.store(true); + cv.notify_all(); for (auto& thread : worker_threads) { thread.join(); } |