diff options
| author | bunnei <bunneidev@gmail.com> | 2019-09-01 13:13:05 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-09-01 13:13:05 -0400 |
| commit | 50b5bb44a009dc899d0d7722e50d8976ce4e34f1 (patch) | |
| tree | e2f5723d977a86ca5c5dba40a649971dfb494531 /src/video_core/textures/decoders.h | |
| parent | 4d4f9cc104c9440de36e3ff3f6b374acd8074885 (diff) | |
| parent | a452ff983dc736e16b0f1c0b01d162bfb6655c79 (diff) | |
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 /// 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, |
