diff options
| author | Chloe <25727384+ogniK5377@users.noreply.github.com> | 2020-12-05 23:45:00 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-05 23:45:00 +1100 |
| commit | f2f346e1104106eb9323f0e141e0e67312c29849 (patch) | |
| tree | 6eac8e13f3333c89d8c0f3428b8664cab63a484a /src/video_core/texture_cache/surface_base.h | |
| parent | e6a896c4bdf9cc47c2002c115c9ff280e540fd1b (diff) | |
| parent | 414a87a4f4570344140d77a7985b4d118b754341 (diff) | |
Merge pull request #5133 from lioncash/video-shadow2
video_core: Resolve more variable shadowing scenarios pt.2
Diffstat (limited to 'src/video_core/texture_cache/surface_base.h')
| -rw-r--r-- | src/video_core/texture_cache/surface_base.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/texture_cache/surface_base.h b/src/video_core/texture_cache/surface_base.h index 173f2edba..cfcfa5b3a 100644 --- a/src/video_core/texture_cache/surface_base.h +++ b/src/video_core/texture_cache/surface_base.h @@ -167,8 +167,8 @@ protected: std::vector<std::size_t> mipmap_offsets; private: - void SwizzleFunc(MortonSwizzleMode mode, u8* memory, const SurfaceParams& params, u8* buffer, - u32 level); + void SwizzleFunc(MortonSwizzleMode mode, u8* memory, const SurfaceParams& surface_params, + u8* buffer, u32 level); std::vector<CopyParams> BreakDownLayered(const SurfaceParams& in_params) const; |
