mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2024-11-23 12:45:38 +01:00
gpu_thread: Use MPSCQueue for GPU commands.
- Necessary for multiple service threads.
This commit is contained in:
parent
90bda66028
commit
b5c13ee0eb
@ -86,7 +86,7 @@ struct CommandDataContainer {
|
|||||||
struct SynchState final {
|
struct SynchState final {
|
||||||
std::atomic_bool is_running{true};
|
std::atomic_bool is_running{true};
|
||||||
|
|
||||||
using CommandQueue = Common::SPSCQueue<CommandDataContainer>;
|
using CommandQueue = Common::MPSCQueue<CommandDataContainer>;
|
||||||
CommandQueue queue;
|
CommandQueue queue;
|
||||||
u64 last_fence{};
|
u64 last_fence{};
|
||||||
std::atomic<u64> signaled_fence{};
|
std::atomic<u64> signaled_fence{};
|
||||||
|
Loading…
Reference in New Issue
Block a user