mirror of
				https://github.com/yuzu-emu/yuzu-mainline.git
				synced 2025-11-04 16:05:01 +00:00 
			
		
		
		
	Presentation: Fix turning FSR on and off in settings
This commit is contained in:
		
							parent
							
								
									4ad22c7d2b
								
							
						
					
					
						commit
						7506ac4118
					
				| 
						 | 
				
			
			@ -362,6 +362,17 @@ void VKBlitScreen::CreateDynamicResources() {
 | 
			
		|||
}
 | 
			
		||||
 | 
			
		||||
void VKBlitScreen::RefreshResources(const Tegra::FramebufferConfig& framebuffer) {
 | 
			
		||||
    if (Settings::values.scaling_filter.GetValue() == Settings::ScalingFilter::Fsr) {
 | 
			
		||||
        if (!fsr) {
 | 
			
		||||
            const auto& layout = render_window.GetFramebufferLayout();
 | 
			
		||||
            fsr = std::make_unique<FSR>(
 | 
			
		||||
                device, memory_allocator, image_count,
 | 
			
		||||
                VkExtent2D{.width = layout.screen.GetWidth(), .height = layout.screen.GetHeight()});
 | 
			
		||||
        }
 | 
			
		||||
    } else {
 | 
			
		||||
        fsr.reset();
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    if (framebuffer.width == raw_width && framebuffer.height == raw_height && !raw_images.empty()) {
 | 
			
		||||
        return;
 | 
			
		||||
    }
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue