Windows and Vulkan fixes for AMD GPU

This commit is contained in:
Jack Andersen
2017-11-08 22:10:43 -10:00
parent 1a2fc1d2a3
commit 165314b817
10 changed files with 85 additions and 80 deletions

View File

@@ -256,7 +256,8 @@ public:
int clientReturn = 0;
std::thread clientThread([&]()
{
logvisor::RegisterThreadName("Boo Client Thread");
std::string thrName = WCSTMBS(getFriendlyName().c_str()) + " Client Thread";
logvisor::RegisterThreadName(thrName.c_str());
clientReturn = m_callback.appMain(this);
});