diff options
| author | liamwhite <liamwhite@users.noreply.github.com> | 2024-02-13 08:17:59 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-13 08:17:59 -0500 |
| commit | f75fceb3c030ac2ed589eb01bc7f3fa61905a76d (patch) | |
| tree | c50e54988d79b98b326993e9b4b61461e42bd531 /src/video_core/texture_cache/image_info.cpp | |
| parent | 3511d5552a94f4fb6cf15ffc24c5629a67051c4b (diff) | |
| parent | 9ce43ee677bdc98eea3d6ea430b0d5867dbcfd26 (diff) | |
Merge pull request #12975 from FernandoS27/keep-your-own-vodoo-doll-away-from-gf
Texture Cache: Fix untracking on GPU remap
Diffstat (limited to 'src/video_core/texture_cache/image_info.cpp')
| -rw-r--r-- | src/video_core/texture_cache/image_info.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/video_core/texture_cache/image_info.cpp b/src/video_core/texture_cache/image_info.cpp index b72788c6d..9444becce 100644 --- a/src/video_core/texture_cache/image_info.cpp +++ b/src/video_core/texture_cache/image_info.cpp @@ -42,6 +42,7 @@ ImageInfo::ImageInfo(const TICEntry& config) noexcept { }; } rescaleable = false; + is_sparse = config.is_sparse != 0; tile_width_spacing = config.tile_width_spacing; if (config.texture_type != TextureType::Texture2D && config.texture_type != TextureType::Texture2DNoMipmap) { |
