summaryrefslogtreecommitdiffstats
path: root/src/video_core/gpu_thread.h
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2022-06-14 14:57:19 +0200
committerMorph <39850852+Morph1984@users.noreply.github.com>2022-06-15 22:59:13 +0200
commit25429998e373c12287ae8da2a1c9c1bbe7bd7047 (patch)
tree0f3e3afac950b0bd5ada9f5a143a38a1ea530b84 /src/video_core/gpu_thread.h
parentMerge pull request #8458 from lat9nq/no-constexpr-flow-block (diff)
downloadyuzu-25429998e373c12287ae8da2a1c9c1bbe7bd7047.tar
yuzu-25429998e373c12287ae8da2a1c9c1bbe7bd7047.tar.gz
yuzu-25429998e373c12287ae8da2a1c9c1bbe7bd7047.tar.bz2
yuzu-25429998e373c12287ae8da2a1c9c1bbe7bd7047.tar.lz
yuzu-25429998e373c12287ae8da2a1c9c1bbe7bd7047.tar.xz
yuzu-25429998e373c12287ae8da2a1c9c1bbe7bd7047.tar.zst
yuzu-25429998e373c12287ae8da2a1c9c1bbe7bd7047.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/gpu_thread.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/gpu_thread.h b/src/video_core/gpu_thread.h
index ad9fd5eff..be0ac2214 100644
--- a/src/video_core/gpu_thread.h
+++ b/src/video_core/gpu_thread.h
@@ -98,7 +98,7 @@ struct CommandDataContainer {
struct SynchState final {
using CommandQueue = Common::MPSCQueue<CommandDataContainer>;
std::mutex write_lock;
- CommandQueue queue{512}; // size must be 2^n
+ CommandQueue queue;
u64 last_fence{};
std::atomic<u64> signaled_fence{};
std::condition_variable_any cv;