diff options
| author | 2019-09-01 13:13:05 -0400 | |
|---|---|---|
| committer | 2019-09-01 13:13:05 -0400 | |
| commit | 50b5bb44a009dc899d0d7722e50d8976ce4e34f1 (patch) | |
| tree | e2f5723d977a86ca5c5dba40a649971dfb494531 /src/video_core/textures/decoders.h | |
| parent | video_core: Silent miscellaneous warnings (#2820) (diff) | |
| parent | MaxwellDMA: Fixes, corrections and relaxations. (diff) | |
| download | yuzu-50b5bb44a009dc899d0d7722e50d8976ce4e34f1.tar.gz yuzu-50b5bb44a009dc899d0d7722e50d8976ce4e34f1.tar.xz yuzu-50b5bb44a009dc899d0d7722e50d8976ce4e34f1.zip | |
Merge pull request #2765 from FernandoS27/dma-fix
MaxwellDMA: Fixes, corrections and relaxations.
Diffstat (limited to 'src/video_core/textures/decoders.h')
| -rw-r--r-- | src/video_core/textures/decoders.h | 3 |
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 | |||
| 44 | 44 | ||
| 45 | /// Copies an untiled subrectangle into a tiled surface. | 45 | /// Copies an untiled subrectangle into a tiled surface. |
| 46 | void SwizzleSubrect(u32 subrect_width, u32 subrect_height, u32 source_pitch, u32 swizzled_width, | 46 | void SwizzleSubrect(u32 subrect_width, u32 subrect_height, u32 source_pitch, u32 swizzled_width, |
| 47 | u32 bytes_per_pixel, u8* swizzled_data, u8* unswizzled_data, u32 block_height); | 47 | u32 bytes_per_pixel, u8* swizzled_data, u8* unswizzled_data, u32 block_height, |
| 48 | u32 offset_x, u32 offset_y); | ||
| 48 | 49 | ||
| 49 | /// Copies a tiled subrectangle into a linear surface. | 50 | /// Copies a tiled subrectangle into a linear surface. |
| 50 | void UnswizzleSubrect(u32 subrect_width, u32 subrect_height, u32 dest_pitch, u32 swizzled_width, | 51 | void UnswizzleSubrect(u32 subrect_width, u32 subrect_height, u32 dest_pitch, u32 swizzled_width, |