diff options
| author | GPUCode <geoster3d@gmail.com> | 2023-12-26 16:28:42 +0200 |
|---|---|---|
| committer | GPUCode <geoster3d@gmail.com> | 2023-12-26 16:33:03 +0200 |
| commit | 20e0407235f3e98da7a9539f25cadf794eb9157f (patch) | |
| tree | 801cb9210a17a684a1c0a7a1da5bf609fbf2dede /src/video_core/texture_cache/decode_bc.h | |
| parent | 05e3db3ac9edbff0e4885ef8b42d3a2427c9f027 (diff) | |
video_core: Fix buffer_row_length computation for linear compressed textures
Diffstat (limited to 'src/video_core/texture_cache/decode_bc.h')
| -rw-r--r-- | src/video_core/texture_cache/decode_bc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/texture_cache/decode_bc.h b/src/video_core/texture_cache/decode_bc.h index 41d1ec0a3..4e3b9b8ac 100644 --- a/src/video_core/texture_cache/decode_bc.h +++ b/src/video_core/texture_cache/decode_bc.h @@ -13,7 +13,7 @@ namespace VideoCommon { [[nodiscard]] u32 ConvertedBytesPerBlock(VideoCore::Surface::PixelFormat pixel_format); -void DecompressBCn(std::span<const u8> input, std::span<u8> output, Extent3D extent, +void DecompressBCn(std::span<const u8> input, std::span<u8> output, BufferImageCopy& copy, VideoCore::Surface::PixelFormat pixel_format); } // namespace VideoCommon |
