mirror of https://github.com/PCSX2/pcsx2.git
GS: Move GSinit()/GSshutdown() to GS thread
This initializes COM, so it has to be done on the thread which is actually going to use it.
This commit is contained in:
parent
a92eb4d10a
commit
6a4df2a641
|
@ -110,9 +110,17 @@ void SysMtgsThread::ShutdownThread()
|
|||
|
||||
void SysMtgsThread::ThreadEntryPoint()
|
||||
{
|
||||
m_thread_handle = Threading::ThreadHandle::GetForCallingThread();
|
||||
Threading::SetNameOfCurrentThread("GS");
|
||||
|
||||
if (GSinit() != 0)
|
||||
{
|
||||
Host::ReportErrorAsync("Error", "GSinit() failed.");
|
||||
m_open_or_close_done.Post();
|
||||
return;
|
||||
}
|
||||
|
||||
m_thread_handle = Threading::ThreadHandle::GetForCallingThread();
|
||||
|
||||
for (;;)
|
||||
{
|
||||
// wait until we're actually asked to initialize (and config has been loaded, etc)
|
||||
|
@ -154,6 +162,8 @@ void SysMtgsThread::ThreadEntryPoint()
|
|||
// we need to reset sem_event here, because MainLoop() kills it.
|
||||
m_sem_event.Reset();
|
||||
}
|
||||
|
||||
GSshutdown();
|
||||
}
|
||||
|
||||
void SysMtgsThread::ResetGS()
|
||||
|
|
|
@ -647,19 +647,6 @@ bool VMManager::Initialize(const VMBootParameters& boot_params)
|
|||
ScopedGuard close_cdvd = [] { DoCDVDclose(); };
|
||||
|
||||
Console.WriteLn("Opening GS...");
|
||||
|
||||
// TODO: Get rid of thread state nonsense and just make it a "normal" thread.
|
||||
static bool gs_initialized = false;
|
||||
if (!gs_initialized)
|
||||
{
|
||||
if (GSinit() != 0)
|
||||
{
|
||||
Console.WriteLn("Failed to initialize GS.");
|
||||
return false;
|
||||
}
|
||||
|
||||
gs_initialized = true;
|
||||
}
|
||||
if (!GetMTGS().WaitForOpen())
|
||||
{
|
||||
// we assume GS is going to report its own error
|
||||
|
|
|
@ -112,7 +112,6 @@ void SysCoreThread::OnSuspendInThread()
|
|||
|
||||
void SysCoreThread::Start()
|
||||
{
|
||||
GSinit();
|
||||
SPU2init();
|
||||
PADinit();
|
||||
DEV9init();
|
||||
|
|
Loading…
Reference in New Issue