mirror of
				https://git.tardis.systems/mirrors/yuzu
				synced 2025-10-31 02:34:11 +01:00 
			
		
		
		
	Texture cache: Fix YFC regression due to code testing
This commit is contained in:
		
							parent
							
								
									b60b70e86d
								
							
						
					
					
						commit
						b62121fd60
					
				| @ -598,14 +598,6 @@ 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)) { | ||||
|             return; | ||||
|         } | ||||
|         image.flags |= ImageFlagBits::CpuModified; | ||||
|         if (True(image.flags & ImageFlagBits::Tracked)) { | ||||
|             UntrackImage(image, id); | ||||
|         } | ||||
|         /*
 | ||||
|         if (True(image.flags & ImageFlagBits::Remapped)) { | ||||
|             continue; | ||||
|         } | ||||
| @ -613,7 +605,6 @@ void TextureCache<P>::UnmapGPUMemory(size_t as_id, GPUVAddr gpu_addr, size_t siz | ||||
|         if (True(image.flags & ImageFlagBits::Tracked)) { | ||||
|             UntrackImage(image, id); | ||||
|         } | ||||
|         */ | ||||
|     } | ||||
| } | ||||
| 
 | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user