Initialize the AX Thread after the sync objects are initialized
This commit is contained in:
parent
43d862bff9
commit
4d27315cd1
|
@ -107,13 +107,13 @@ protected:
|
||||||
volatile u16 m_cmdlist[512];
|
volatile u16 m_cmdlist[512];
|
||||||
volatile u32 m_cmdlist_size;
|
volatile u32 m_cmdlist_size;
|
||||||
|
|
||||||
std::thread m_axthread;
|
|
||||||
|
|
||||||
// Sync objects
|
// Sync objects
|
||||||
std::mutex m_processing;
|
std::mutex m_processing;
|
||||||
std::condition_variable m_cmdlist_cv;
|
std::condition_variable m_cmdlist_cv;
|
||||||
std::mutex m_cmdlist_mutex;
|
std::mutex m_cmdlist_mutex;
|
||||||
|
|
||||||
|
std::thread m_axthread;
|
||||||
|
|
||||||
// Copy a command list from memory to our temp buffer
|
// Copy a command list from memory to our temp buffer
|
||||||
void CopyCmdList(u32 addr, u16 size);
|
void CopyCmdList(u32 addr, u16 size);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue