summaryrefslogtreecommitdiff
path: root/src/video_core/textures
diff options
context:
space:
mode:
authorGravatar bunnei2022-10-05 18:53:42 -0700
committerGravatar GitHub2022-10-05 18:53:42 -0700
commitd55096ce85d3f24f57f84e26c6256c42956b858a (patch)
tree8ea9756f0249505b9928b312ae64fad926433bc0 /src/video_core/textures
parentMerge pull request #9015 from german77/amiibo-rewrite (diff)
parentcommon: remove "yuzu:" prefix from thread names (diff)
downloadyuzu-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/textures')
-rw-r--r--src/video_core/textures/astc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/textures/astc.cpp b/src/video_core/textures/astc.cpp
index e3742ddf5..15b9d4182 100644
--- a/src/video_core/textures/astc.cpp
+++ b/src/video_core/textures/astc.cpp
@@ -1656,7 +1656,7 @@ void Decompress(std::span<const uint8_t> data, uint32_t width, uint32_t height,
1656 const u32 cols = Common::DivideUp(width, block_width); 1656 const u32 cols = Common::DivideUp(width, block_width);
1657 1657
1658 Common::ThreadWorker workers{std::max(std::thread::hardware_concurrency(), 2U) / 2, 1658 Common::ThreadWorker workers{std::max(std::thread::hardware_concurrency(), 2U) / 2,
1659 "yuzu:ASTCDecompress"}; 1659 "ASTCDecompress"};
1660 1660
1661 for (u32 z = 0; z < depth; ++z) { 1661 for (u32 z = 0; z < depth; ++z) {
1662 const u32 depth_offset = z * height * width * 4; 1662 const u32 depth_offset = z * height * width * 4;