diff options
| author | bunnei <bunneidev@gmail.com> | 2020-07-14 14:04:16 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-14 14:04:16 -0400 |
| commit | 666b37ad56e816cd2bde4a521cba0e63812dc681 (patch) | |
| tree | c498f364e42006df041ec4bab818edb2c1b23d36 /src/video_core/texture_cache/surface_params.h | |
| parent | e2730372b8b26bf3141bf91107f9982e270f751b (diff) | |
| parent | c574ab5aa1d3ff81b28ddfbba3818b3ce724aa32 (diff) | |
Merge pull request #4242 from ReinUsesLisp/maxwell-dma
maxwell_dma: Match official doc and support pitch->voxel copies
Diffstat (limited to 'src/video_core/texture_cache/surface_params.h')
| -rw-r--r-- | src/video_core/texture_cache/surface_params.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/texture_cache/surface_params.h b/src/video_core/texture_cache/surface_params.h index 24957df8d..118aa689e 100644 --- a/src/video_core/texture_cache/surface_params.h +++ b/src/video_core/texture_cache/surface_params.h @@ -204,7 +204,7 @@ public: static std::size_t AlignLayered(const std::size_t out_size, const u32 block_height, const u32 block_depth) { return Common::AlignBits(out_size, - Tegra::Texture::GetGOBSizeShift() + block_height + block_depth); + Tegra::Texture::GOB_SIZE_SHIFT + block_height + block_depth); } /// Converts a width from a type of surface into another. This helps represent the |
