Merge pull request #1069 from parkerlamb/context_fix

UI/Vulkan: Fixed graphics context recreation on HiDPI systems
This commit is contained in:
Justin Moore 2018-01-21 18:26:15 -06:00 committed by GitHub
commit 5477b1e40f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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();
}