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/textures | |
| 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/textures')
| -rw-r--r-- | src/video_core/textures/astc.cpp | 2 |
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; |