name some threads

This commit is contained in:
Shawn Hoffman
2020-08-22 02:55:31 -07:00
parent a769dff1d0
commit 6ef9d70701
6 changed files with 16 additions and 0 deletions

View File

@ -6,6 +6,7 @@
#include <thread>
#include "Common/Assert.h"
#include "Common/Logging/Log.h"
#include "Common/Thread.h"
namespace VideoCommon
{
@ -192,6 +193,8 @@ void AsyncShaderCompiler::WorkerThreadExit(void* param)
void AsyncShaderCompiler::WorkerThreadEntryPoint(void* param)
{
Common::SetCurrentThreadName("AsyncShaderCompiler Worker");
// Initialize worker thread with backend-specific method.
if (!WorkerThreadInitWorkerThread(param))
{