summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarshall Mohror <mohror64@gmail.com>2021-10-20 04:20:28 +0200
committerFernando Sahmkow <fsahmkow27@gmail.com>2021-11-16 22:11:31 +0100
commit7506ac4118c6065b2557fe3cb94bab52c099ca37 (patch)
tree60f97cc7385581986213ea2a2dc2bfcde8c12b07
parentVideo Core: fix building for GCC. (diff)
downloadyuzu-7506ac4118c6065b2557fe3cb94bab52c099ca37.tar
yuzu-7506ac4118c6065b2557fe3cb94bab52c099ca37.tar.gz
yuzu-7506ac4118c6065b2557fe3cb94bab52c099ca37.tar.bz2
yuzu-7506ac4118c6065b2557fe3cb94bab52c099ca37.tar.lz
yuzu-7506ac4118c6065b2557fe3cb94bab52c099ca37.tar.xz
yuzu-7506ac4118c6065b2557fe3cb94bab52c099ca37.tar.zst
yuzu-7506ac4118c6065b2557fe3cb94bab52c099ca37.zip
-rw-r--r--src/video_core/renderer_vulkan/vk_blit_screen.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/video_core/renderer_vulkan/vk_blit_screen.cpp b/src/video_core/renderer_vulkan/vk_blit_screen.cpp
index 334eeb92e..ccf721008 100644
--- a/src/video_core/renderer_vulkan/vk_blit_screen.cpp
+++ b/src/video_core/renderer_vulkan/vk_blit_screen.cpp
@@ -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;
}