Browse Source

fix

pull/3062/head
lizzie 2 months ago
parent
commit
86cd8a98c5
  1. 4
      src/video_core/texture_cache/texture_cache.h

4
src/video_core/texture_cache/texture_cache.h

@ -1540,8 +1540,8 @@ ImageId TextureCache<P>::JoinImages(const ImageInfo& info, GPUVAddr gpu_addr, DA
new_image.modification_tick = overlap.modification_tick; new_image.modification_tick = overlap.modification_tick;
} else { } else {
// If we cannot determine a base mapping, fallback to preserving the // If we cannot determine a base mapping, fallback to preserving the
// overlap (avoid deleting GPU-modified data) and log the event so it can be
// investigated, we're trying to pinpoint the issue of texture flickering.
// overlap (avoid deleting GPU-modified data) and log the event so
// it can be investigated, we're trying to pinpoint the issue of texture flickering.
LOG_WARNING(HW_GPU, "Could not map overlap gpu_addr {:#x} into new image; preserving overlap", u64(overlap.gpu_addr)); LOG_WARNING(HW_GPU, "Could not map overlap gpu_addr {:#x} into new image; preserving overlap", u64(overlap.gpu_addr));
continue; continue;
} }

Loading…
Cancel
Save