diff options
| author | 2022-10-03 18:43:56 -0400 | |
|---|---|---|
| committer | 2022-10-03 18:43:56 -0400 | |
| commit | 35d3e7db2a0413a921e0846a3d76f9d9f36a2500 (patch) | |
| tree | 12f749fe914b16cbc0a8b424c1738495b4c154b7 /src/video_core/textures | |
| parent | Merge pull request #8955 from german77/amiibo-rewrite (diff) | |
| download | yuzu-35d3e7db2a0413a921e0846a3d76f9d9f36a2500.tar.gz yuzu-35d3e7db2a0413a921e0846a3d76f9d9f36a2500.tar.xz yuzu-35d3e7db2a0413a921e0846a3d76f9d9f36a2500.zip | |
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; |