mirror of
https://github.com/yuzu-emu/yuzu-mainline.git
synced 2025-08-20 03:51:12 +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.
|
// to account for that.
|
||||||
const bool is_suboptimal = swapchain.NeedsRecreation();
|
const bool is_suboptimal = swapchain.NeedsRecreation();
|
||||||
const bool size_changed =
|
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) {
|
if (is_suboptimal || size_changed) {
|
||||||
RecreateSwapchain(frame);
|
RecreateSwapchain(frame);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue