diff options
| author | 2022-10-05 18:53:42 -0700 | |
|---|---|---|
| committer | 2022-10-05 18:53:42 -0700 | |
| commit | d55096ce85d3f24f57f84e26c6256c42956b858a (patch) | |
| tree | 8ea9756f0249505b9928b312ae64fad926433bc0 /src/video_core/gpu_thread.cpp | |
| parent | Merge pull request #9015 from german77/amiibo-rewrite (diff) | |
| parent | common: remove "yuzu:" prefix from thread names (diff) | |
| download | yuzu-d55096ce85d3f24f57f84e26c6256c42956b858a.tar.gz yuzu-d55096ce85d3f24f57f84e26c6256c42956b858a.tar.xz yuzu-d55096ce85d3f24f57f84e26c6256c42956b858a.zip | |
Merge pull request #9013 from liamwhite/spinning-a-yarn
common: remove "yuzu:" prefix from thread names
Diffstat (limited to 'src/video_core/gpu_thread.cpp')
| -rw-r--r-- | src/video_core/gpu_thread.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/gpu_thread.cpp b/src/video_core/gpu_thread.cpp index d43f7175a..f0e48cfbd 100644 --- a/src/video_core/gpu_thread.cpp +++ b/src/video_core/gpu_thread.cpp | |||
| @@ -19,7 +19,7 @@ namespace VideoCommon::GPUThread { | |||
| 19 | static void RunThread(std::stop_token stop_token, Core::System& system, | 19 | static void RunThread(std::stop_token stop_token, Core::System& system, |
| 20 | VideoCore::RendererBase& renderer, Core::Frontend::GraphicsContext& context, | 20 | VideoCore::RendererBase& renderer, Core::Frontend::GraphicsContext& context, |
| 21 | Tegra::DmaPusher& dma_pusher, SynchState& state) { | 21 | Tegra::DmaPusher& dma_pusher, SynchState& state) { |
| 22 | std::string name = "yuzu:GPU"; | 22 | std::string name = "GPU"; |
| 23 | MicroProfileOnThreadCreate(name.c_str()); | 23 | MicroProfileOnThreadCreate(name.c_str()); |
| 24 | SCOPE_EXIT({ MicroProfileOnThreadExit(); }); | 24 | SCOPE_EXIT({ MicroProfileOnThreadExit(); }); |
| 25 | 25 | ||