mirror of
https://github.com/xenia-project/xenia.git
synced 2025-12-06 07:12:03 +01:00
UI/Vulkan: Fixed graphics context recreation on HiDPI systems.
This commit is contained in:
parent
d512d4127f
commit
53ed82db71
|
|
@ -150,8 +150,8 @@ void VulkanContext::BeginSwap() {
|
|||
// If it has been, we'll need to reinitialize the swap chain before we
|
||||
// start touching it.
|
||||
if (target_window_) {
|
||||
if (target_window_->width() != swap_chain_->surface_width() ||
|
||||
target_window_->height() != swap_chain_->surface_height()) {
|
||||
if (target_window_->scaled_width() != swap_chain_->surface_width() ||
|
||||
target_window_->scaled_height() != swap_chain_->surface_height()) {
|
||||
// Resized!
|
||||
swap_chain_->Reinitialize();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue