gidoly
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
0 deletions
-
src/video_core/texture_cache/texture_cache.h
|
|
|
@ -598,6 +598,10 @@ void TextureCache<P>::UnmapGPUMemory(size_t as_id, GPUVAddr gpu_addr, size_t siz |
|
|
|
[&](ImageId id, Image&) { deleted_images.push_back(id); }); |
|
|
|
for (const ImageId id : deleted_images) { |
|
|
|
Image& image = slot_images[id]; |
|
|
|
if (True(image.flags & ImageFlagBits::CpuModified)) { |
|
|
|
continue; |
|
|
|
} |
|
|
|
image.flags |= ImageFlagBits::CpuModified; |
|
|
|
if (True(image.flags & ImageFlagBits::Remapped)) { |
|
|
|
continue; |
|
|
|
} |
|
|
|
|