mirror of
https://github.com/yuzu-emu/yuzu-mainline.git
synced 2025-08-19 20:31:11 +00:00
"Merge Tagged PR 12688"
This commit is contained in:
parent
8ae078ab06
commit
9116c7479c
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue