mirror of
https://git.suyu.dev/suyu/suyu
synced 2025-09-03 01:46:31 -05:00
gpu_thread: Use MPSCQueue for GPU commands.
- Necessary for multiple service threads.
This commit is contained in:
@@ -86,7 +86,7 @@ struct CommandDataContainer {
|
||||
struct SynchState final {
|
||||
std::atomic_bool is_running{true};
|
||||
|
||||
using CommandQueue = Common::SPSCQueue<CommandDataContainer>;
|
||||
using CommandQueue = Common::MPSCQueue<CommandDataContainer>;
|
||||
CommandQueue queue;
|
||||
u64 last_fence{};
|
||||
std::atomic<u64> signaled_fence{};
|
||||
|
Reference in New Issue
Block a user