summaryrefslogtreecommitdiffstats
path: root/src/video_core/textures/decoders.h
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2019-07-25 01:18:17 +0200
committerFernandoS27 <fsahmkow27@gmail.com>2019-07-26 02:41:42 +0200
commita452ff983dc736e16b0f1c0b01d162bfb6655c79 (patch)
treee2b6662a5f3dd884f4354bbabec82af33ad2cd77 /src/video_core/textures/decoders.h
parentMerge pull request #2704 from FernandoS27/conditional (diff)
downloadyuzu-a452ff983dc736e16b0f1c0b01d162bfb6655c79.tar
yuzu-a452ff983dc736e16b0f1c0b01d162bfb6655c79.tar.gz
yuzu-a452ff983dc736e16b0f1c0b01d162bfb6655c79.tar.bz2
yuzu-a452ff983dc736e16b0f1c0b01d162bfb6655c79.tar.lz
yuzu-a452ff983dc736e16b0f1c0b01d162bfb6655c79.tar.xz
yuzu-a452ff983dc736e16b0f1c0b01d162bfb6655c79.tar.zst
yuzu-a452ff983dc736e16b0f1c0b01d162bfb6655c79.zip
Diffstat (limited to 'src/video_core/textures/decoders.h')
-rw-r--r--src/video_core/textures/decoders.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/video_core/textures/decoders.h b/src/video_core/textures/decoders.h
index eaec9b5a5..f1e3952bc 100644
--- a/src/video_core/textures/decoders.h
+++ b/src/video_core/textures/decoders.h
@@ -44,7 +44,8 @@ std::size_t CalculateSize(bool tiled, u32 bytes_per_pixel, u32 width, u32 height
/// Copies an untiled subrectangle into a tiled surface.
void SwizzleSubrect(u32 subrect_width, u32 subrect_height, u32 source_pitch, u32 swizzled_width,
- u32 bytes_per_pixel, u8* swizzled_data, u8* unswizzled_data, u32 block_height);
+ u32 bytes_per_pixel, u8* swizzled_data, u8* unswizzled_data, u32 block_height,
+ u32 offset_x, u32 offset_y);
/// Copies a tiled subrectangle into a linear surface.
void UnswizzleSubrect(u32 subrect_width, u32 subrect_height, u32 dest_pitch, u32 swizzled_width,