mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
				synced 2025-03-21 01:53:15 +00:00 
			
		
		
		
	texture_cache: Reload textures when number of resources mismatch
This commit is contained in:
		
							parent
							
								
									5b37cecd76
								
							
						
					
					
						commit
						dd70e097cc
					
				@ -660,6 +660,15 @@ private:
 | 
			
		||||
        std::size_t passed_tests = 0;
 | 
			
		||||
        bool modified = false;
 | 
			
		||||
 | 
			
		||||
        u32 num_resources = 0;
 | 
			
		||||
        for (auto& surface : overlaps) {
 | 
			
		||||
            const SurfaceParams& src_params = surface->GetSurfaceParams();
 | 
			
		||||
            num_resources += src_params.depth * src_params.num_levels;
 | 
			
		||||
        }
 | 
			
		||||
        if (num_resources != params.depth * params.num_levels) {
 | 
			
		||||
            LoadSurface(new_surface);
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        for (auto& surface : overlaps) {
 | 
			
		||||
            const SurfaceParams& src_params = surface->GetSurfaceParams();
 | 
			
		||||
            const auto mipmap_layer{new_surface->GetLayerMipmap(surface->GetGpuAddr())};
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user