summaryrefslogtreecommitdiffstats
path: root/src/video_core/textures/decoders.h
diff options
context:
space:
mode:
authorFrederic L <frederic.laing.development@gmail.com>2018-11-19 04:53:03 +0100
committerbunnei <bunneidev@gmail.com>2018-11-19 04:53:03 +0100
commit11a1442229e097ddeb092afd4f0bf444c5042b10 (patch)
treef65d63b6f02fa637279f320aba69b2eaee087b89 /src/video_core/textures/decoders.h
parentMerge pull request #1640 from DarkLordZach/game-list-reload (diff)
downloadyuzu-11a1442229e097ddeb092afd4f0bf444c5042b10.tar
yuzu-11a1442229e097ddeb092afd4f0bf444c5042b10.tar.gz
yuzu-11a1442229e097ddeb092afd4f0bf444c5042b10.tar.bz2
yuzu-11a1442229e097ddeb092afd4f0bf444c5042b10.tar.lz
yuzu-11a1442229e097ddeb092afd4f0bf444c5042b10.tar.xz
yuzu-11a1442229e097ddeb092afd4f0bf444c5042b10.tar.zst
yuzu-11a1442229e097ddeb092afd4f0bf444c5042b10.zip
Diffstat (limited to 'src/video_core/textures/decoders.h')
-rw-r--r--src/video_core/textures/decoders.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/video_core/textures/decoders.h b/src/video_core/textures/decoders.h
index ba065510b..f4ef7c73e 100644
--- a/src/video_core/textures/decoders.h
+++ b/src/video_core/textures/decoders.h
@@ -19,6 +19,13 @@ inline std::size_t GetGOBSize() {
/**
* Unswizzles a swizzled texture without changing its format.
*/
+void UnswizzleTexture(u8* unswizzled_data, VAddr address, u32 tile_size_x, u32 tile_size_y,
+ u32 bytes_per_pixel, u32 width, u32 height, u32 depth,
+ u32 block_height = TICEntry::DefaultBlockHeight,
+ u32 block_depth = TICEntry::DefaultBlockHeight);
+/**
+ * Unswizzles a swizzled texture without changing its format.
+ */
std::vector<u8> UnswizzleTexture(VAddr address, u32 tile_size_x, u32 tile_size_y,
u32 bytes_per_pixel, u32 width, u32 height, u32 depth,
u32 block_height = TICEntry::DefaultBlockHeight,