diff options
author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2019-03-13 20:25:23 +0100 |
---|---|---|
committer | ReinUsesLisp <reinuseslisp@airmail.cc> | 2019-03-13 20:35:10 +0100 |
commit | 6ed6129b4ffab796c144d587afd3a27d33667f8f (patch) | |
tree | dab3508351d06041e6445299bb7e19c5f1783d92 /src/video_core/morton.h | |
parent | video_core/morton: Remove clang-format off when it's not needed (diff) | |
download | yuzu-6ed6129b4ffab796c144d587afd3a27d33667f8f.tar yuzu-6ed6129b4ffab796c144d587afd3a27d33667f8f.tar.gz yuzu-6ed6129b4ffab796c144d587afd3a27d33667f8f.tar.bz2 yuzu-6ed6129b4ffab796c144d587afd3a27d33667f8f.tar.lz yuzu-6ed6129b4ffab796c144d587afd3a27d33667f8f.tar.xz yuzu-6ed6129b4ffab796c144d587afd3a27d33667f8f.tar.zst yuzu-6ed6129b4ffab796c144d587afd3a27d33667f8f.zip |
Diffstat (limited to 'src/video_core/morton.h')
-rw-r--r-- | src/video_core/morton.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/morton.h b/src/video_core/morton.h index 065f59ce3..f2f104935 100644 --- a/src/video_core/morton.h +++ b/src/video_core/morton.h @@ -13,7 +13,7 @@ enum class MortonSwizzleMode { MortonToLinear, LinearToMorton }; void MortonSwizzle(MortonSwizzleMode mode, VideoCore::Surface::PixelFormat format, u32 stride, u32 block_height, u32 height, u32 block_depth, u32 depth, u32 tile_width_spacing, - u8* buffer, std::size_t buffer_size, VAddr addr); + u8* buffer, VAddr addr); void MortonCopyPixels128(u32 width, u32 height, u32 bytes_per_pixel, u32 linear_bytes_per_pixel, u8* morton_data, u8* linear_data, bool morton_to_linear); |