diff options
Diffstat (limited to 'Source/Core/VideoCommon/AsyncShaderCompiler.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/AsyncShaderCompiler.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/Core/VideoCommon/AsyncShaderCompiler.cpp b/Source/Core/VideoCommon/AsyncShaderCompiler.cpp index 942f293f1b..1586c7d209 100644 --- a/Source/Core/VideoCommon/AsyncShaderCompiler.cpp +++ b/Source/Core/VideoCommon/AsyncShaderCompiler.cpp @@ -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)) { |
