This commit is contained in:
GovanifY 2025-12-16 19:23:37 +07:00 committed by GitHub
commit 79a4e074b5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 0 deletions

View File

@ -4,6 +4,7 @@
#include "GS/Renderers/Vulkan/GSDeviceVK.h"
#include "GS/Renderers/Vulkan/VKBuilders.h"
#include "GS/Renderers/Vulkan/VKSwapChain.h"
#include "ImGui/ImGuiManager.h"
#include "VMManager.h"
#include "common/Assertions.h"
@ -611,6 +612,8 @@ bool VKSwapChain::ResizeSwapChain(u32 new_width, u32 new_height, float new_scale
return false;
}
ImGuiManager::WindowResized();
return true;
}