diff options
| author | bunnei <bunneidev@gmail.com> | 2022-06-11 00:07:18 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-06-11 00:07:18 -0700 |
| commit | 5282efac1b2a875ab3ea81b4ea21efdcac4e8d51 (patch) | |
| tree | ad7c5cde266ba8d9cf80305b88e46689491dab3a /src/video_core/gpu_thread.h | |
| parent | ae83d5c6d30b9835bd642abcf3f037191f70d001 (diff) | |
| parent | 4dd6bcd2063909359b08771465c3641876ddf138 (diff) | |
Merge pull request #8413 from behunin/bounded-queue
gpu_thread: Move to bounded queue
Diffstat (limited to 'src/video_core/gpu_thread.h')
| -rw-r--r-- | src/video_core/gpu_thread.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/video_core/gpu_thread.h b/src/video_core/gpu_thread.h index 71cd35756..ad9fd5eff 100644 --- a/src/video_core/gpu_thread.h +++ b/src/video_core/gpu_thread.h @@ -10,7 +10,7 @@ #include <thread> #include <variant> -#include "common/threadsafe_queue.h" +#include "common/bounded_threadsafe_queue.h" #include "video_core/framebuffer_config.h" namespace Tegra { @@ -96,9 +96,9 @@ struct CommandDataContainer { /// Struct used to synchronize the GPU thread struct SynchState final { - using CommandQueue = Common::SPSCQueue<CommandDataContainer, true>; + using CommandQueue = Common::MPSCQueue<CommandDataContainer>; std::mutex write_lock; - CommandQueue queue; + CommandQueue queue{512}; // size must be 2^n u64 last_fence{}; std::atomic<u64> signaled_fence{}; std::condition_variable_any cv; |
