mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 19:58:53 +00:00
name some threads
This commit is contained in:
parent
a769dff1d0
commit
6ef9d70701
6 changed files with 16 additions and 0 deletions
|
@ -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))
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue