summaryrefslogtreecommitdiffstats
path: root/src/video_core/textures/decoders.cpp
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2018-06-02 20:17:09 +0200
committerSubv <subv2112@gmail.com>2018-06-02 20:17:09 +0200
commit99f9d47d16aaa943d952ab4b0a46837b2685aed2 (patch)
tree64bdd12bc324acbeb7073e688e50bf641413da40 /src/video_core/textures/decoders.cpp
parentMerge pull request #492 from mailwl/time (diff)
downloadyuzu-99f9d47d16aaa943d952ab4b0a46837b2685aed2.tar
yuzu-99f9d47d16aaa943d952ab4b0a46837b2685aed2.tar.gz
yuzu-99f9d47d16aaa943d952ab4b0a46837b2685aed2.tar.bz2
yuzu-99f9d47d16aaa943d952ab4b0a46837b2685aed2.tar.lz
yuzu-99f9d47d16aaa943d952ab4b0a46837b2685aed2.tar.xz
yuzu-99f9d47d16aaa943d952ab4b0a46837b2685aed2.tar.zst
yuzu-99f9d47d16aaa943d952ab4b0a46837b2685aed2.zip
Diffstat (limited to 'src/video_core/textures/decoders.cpp')
-rw-r--r--src/video_core/textures/decoders.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/video_core/textures/decoders.cpp b/src/video_core/textures/decoders.cpp
index 0179663e8..2d2af5554 100644
--- a/src/video_core/textures/decoders.cpp
+++ b/src/video_core/textures/decoders.cpp
@@ -46,6 +46,7 @@ void CopySwizzledData(u32 width, u32 height, u32 bytes_per_pixel, u32 out_bytes_
u32 BytesPerPixel(TextureFormat format) {
switch (format) {
case TextureFormat::DXT1:
+ case TextureFormat::DXN1:
// In this case a 'pixel' actually refers to a 4x4 tile.
return 8;
case TextureFormat::DXT23:
@@ -79,7 +80,9 @@ std::vector<u8> UnswizzleTexture(VAddr address, TextureFormat format, u32 width,
case TextureFormat::DXT1:
case TextureFormat::DXT23:
case TextureFormat::DXT45:
- // In the DXT formats, each 4x4 tile is swizzled instead of just individual pixel values.
+ case TextureFormat::DXN1:
+ // In the DXT and DXN formats, each 4x4 tile is swizzled instead of just individual pixel
+ // values.
CopySwizzledData(width / 4, height / 4, bytes_per_pixel, bytes_per_pixel, data,
unswizzled_data.data(), true, block_height);
break;
@@ -109,6 +112,7 @@ std::vector<u8> DecodeTexture(const std::vector<u8>& texture_data, TextureFormat
case TextureFormat::DXT1:
case TextureFormat::DXT23:
case TextureFormat::DXT45:
+ case TextureFormat::DXN1:
case TextureFormat::A8R8G8B8:
case TextureFormat::A2B10G10R10:
case TextureFormat::A1B5G5R5: