mirror of
				https://github.com/Drezil/imgui.git
				synced 2025-11-03 22:51:06 +01:00 
			
		
		
		
	Vulkan, Viewports: Fixed ImGui_ImplVulkan_SetWindowSize() not recreating command-buffers, fence etc. (#2472, #2461, #2071)
This commit is contained in:
		@@ -1217,7 +1217,7 @@ static void ImGui_ImplVulkan_SetWindowSize(ImGuiViewport* viewport, ImVec2 size)
 | 
			
		||||
        return;
 | 
			
		||||
    ImGui_ImplVulkan_InitInfo* v = &g_VulkanInitInfo;
 | 
			
		||||
    data->Window.ClearEnable = (viewport->Flags & ImGuiViewportFlags_NoRendererClear) ? false : true;
 | 
			
		||||
    ImGui_ImplVulkanH_CreateWindowSwapChain(v->Instance, v->PhysicalDevice, v->Device, &data->Window, v->Allocator, (int)size.x, (int)size.y, v->MinImageCount);
 | 
			
		||||
    ImGui_ImplVulkanH_CreateWindow(v->Instance, v->PhysicalDevice, v->Device, &data->Window, v->QueueFamily, v->Allocator, (int)size.x, (int)size.y, v->MinImageCount);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static void ImGui_ImplVulkan_RenderWindow(ImGuiViewport* viewport, void*)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user