summaryrefslogtreecommitdiffstats
path: root/src/video_core/textures/decoders.h
diff options
context:
space:
mode:
authorFernandoS27 <fsahmkow27@gmail.com>2018-10-30 02:34:44 +0100
committerFernandoS27 <fsahmkow27@gmail.com>2018-11-01 18:08:19 +0100
commitaee93f98f9ea68404a3de0ab8d7bd7e954924318 (patch)
treef480fc1693cb8092e43cdc5f0e1013bbd6908c9d /src/video_core/textures/decoders.h
parentImplemented ASTC 5x5 (diff)
downloadyuzu-aee93f98f9ea68404a3de0ab8d7bd7e954924318.tar
yuzu-aee93f98f9ea68404a3de0ab8d7bd7e954924318.tar.gz
yuzu-aee93f98f9ea68404a3de0ab8d7bd7e954924318.tar.bz2
yuzu-aee93f98f9ea68404a3de0ab8d7bd7e954924318.tar.lz
yuzu-aee93f98f9ea68404a3de0ab8d7bd7e954924318.tar.xz
yuzu-aee93f98f9ea68404a3de0ab8d7bd7e954924318.tar.zst
yuzu-aee93f98f9ea68404a3de0ab8d7bd7e954924318.zip
Diffstat (limited to 'src/video_core/textures/decoders.h')
-rw-r--r--src/video_core/textures/decoders.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/textures/decoders.h b/src/video_core/textures/decoders.h
index b390219e4..ba065510b 100644
--- a/src/video_core/textures/decoders.h
+++ b/src/video_core/textures/decoders.h
@@ -19,8 +19,8 @@ inline std::size_t GetGOBSize() {
/**
* Unswizzles a swizzled texture without changing its format.
*/
-std::vector<u8> UnswizzleTexture(VAddr address, u32 tile_size, u32 bytes_per_pixel, u32 width,
- u32 height, u32 depth,
+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,
u32 block_depth = TICEntry::DefaultBlockHeight);