[c-host] dxgi: close the desktop on deinit

This commit is contained in:
Geoffrey McRae
2020-04-12 13:46:56 +10:00
parent d3836d4548
commit 7018a3e737
3 changed files with 9 additions and 2 deletions

View File

@@ -612,6 +612,13 @@ static bool dxgi_deinit()
}
LG_LOCK_FREE(this->deviceContextLock);
if (this->desktop)
{
CloseDesktop(this->desktop);
this->desktop = NULL;
}
this->initialized = false;
return true;
}