From 212577450cd1c78f4d9289d61568d0a086f3d45b Mon Sep 17 00:00:00 2001 From: lizzie Date: Thu, 19 Feb 2026 08:37:04 +0000 Subject: [PATCH] [video_core] change MPSC->SPCS queue for synch state of GPU cmds Signed-off-by: lizzie --- src/video_core/gpu_thread.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video_core/gpu_thread.h b/src/video_core/gpu_thread.h index dc0fce9f82..90c455fdd9 100644 --- a/src/video_core/gpu_thread.h +++ b/src/video_core/gpu_thread.h @@ -89,7 +89,7 @@ struct CommandDataContainer { /// Struct used to synchronize the GPU thread struct SynchState final { - using CommandQueue = Common::MPSCQueue; + using CommandQueue = Common::SPSCQueue; std::mutex write_lock; CommandQueue queue; u64 last_fence{};