diff options
| author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2019-04-15 21:06:04 -0400 |
|---|---|---|
| committer | FernandoS27 <fsahmkow27@gmail.com> | 2019-04-15 21:22:16 -0400 |
| commit | bec28d692d21a42f17ae26f0ab6271aca1c233cd (patch) | |
| tree | c776ad716389b6113b76cd058e0c236c6697f7a2 /src/video_core/textures/decoders.h | |
| parent | 8a099ac99f61871f0492864d7e95a5922e57223d (diff) | |
Implement Block Linear copies in Kepler Memory.
Diffstat (limited to 'src/video_core/textures/decoders.h')
| -rw-r--r-- | src/video_core/textures/decoders.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/video_core/textures/decoders.h b/src/video_core/textures/decoders.h index e078fa274..21d4b37fc 100644 --- a/src/video_core/textures/decoders.h +++ b/src/video_core/textures/decoders.h @@ -51,4 +51,7 @@ void UnswizzleSubrect(u32 subrect_width, u32 subrect_height, u32 dest_pitch, u32 u32 bytes_per_pixel, u8* swizzled_data, u8* unswizzled_data, u32 block_height, u32 offset_x, u32 offset_y); +void SwizzleKepler(u32 width, u32 height, u32 dst_x, u32 dst_y, u32 block_height, + std::size_t copy_size, u8* source_data, u8* swizzle_data); + } // namespace Tegra::Texture |
