diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2023-12-31 21:00:23 +0100 |
---|---|---|
committer | Fernando Sahmkow <fsahmkow27@gmail.com> | 2023-12-31 21:03:46 +0100 |
commit | 737e6e531c8eb155fcbd19ddd679336332bbc8c6 (patch) | |
tree | e7446a2cbc3bb9e8fc683eb7b5f1fdfeadbb0f2a | |
parent | MaxwellDMA: Don't flush the outputs of a dma copy. (diff) | |
download | yuzu-737e6e531c8eb155fcbd19ddd679336332bbc8c6.tar yuzu-737e6e531c8eb155fcbd19ddd679336332bbc8c6.tar.gz yuzu-737e6e531c8eb155fcbd19ddd679336332bbc8c6.tar.bz2 yuzu-737e6e531c8eb155fcbd19ddd679336332bbc8c6.tar.lz yuzu-737e6e531c8eb155fcbd19ddd679336332bbc8c6.tar.xz yuzu-737e6e531c8eb155fcbd19ddd679336332bbc8c6.tar.zst yuzu-737e6e531c8eb155fcbd19ddd679336332bbc8c6.zip |
-rw-r--r-- | src/core/memory.h | 3 | ||||
-rw-r--r-- | src/video_core/renderer_vulkan/vk_present_manager.cpp | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/core/memory.h b/src/core/memory.h index 7bf05e177..e325dd613 100644 --- a/src/core/memory.h +++ b/src/core/memory.h @@ -683,7 +683,8 @@ public: } else { this->m_memory.WriteBlockUnsafe(this->m_addr, this->data(), this->size_bytes()); } - } else if constexpr ((FLAGS & GuestMemoryFlags::Safe) || (FLAGS & GuestMemoryFlags::Cached)) { + } else if constexpr ((FLAGS & GuestMemoryFlags::Safe) || + (FLAGS & GuestMemoryFlags::Cached)) { this->m_memory.InvalidateRegion(this->m_addr, this->size_bytes()); } } diff --git a/src/video_core/renderer_vulkan/vk_present_manager.cpp b/src/video_core/renderer_vulkan/vk_present_manager.cpp index 5e7518d96..792ed9615 100644 --- a/src/video_core/renderer_vulkan/vk_present_manager.cpp +++ b/src/video_core/renderer_vulkan/vk_present_manager.cpp @@ -329,7 +329,7 @@ void PresentManager::CopyToSwapchainImpl(Frame* frame) { // to account for that. const bool is_suboptimal = swapchain.NeedsRecreation(); const bool size_changed = - swapchain.GetWidth() != frame->width || swapchain.GetHeight() != frame->height; + swapchain.GetWidth() < frame->width || swapchain.GetHeight() < frame->height; if (is_suboptimal || size_changed) { RecreateSwapchain(frame); } |