mirror of
https://github.com/Drezil/imgui.git
synced 2024-11-22 11:57:00 +00:00
tabs to space, remove braces
This commit is contained in:
parent
3234f81cb1
commit
4bc6a951fe
@ -89,13 +89,9 @@ static void resize_vulkan(GLFWwindow* /*window*/, int w, int h)
|
||||
err = vkGetPhysicalDeviceSurfaceCapabilitiesKHR(g_Gpu, g_Surface, &cap);
|
||||
check_vk_result(err);
|
||||
if (cap.maxImageCount > 0)
|
||||
{
|
||||
info.minImageCount = (cap.minImageCount + 2 < cap.maxImageCount) ? (cap.minImageCount + 2) : cap.maxImageCount;
|
||||
}
|
||||
else
|
||||
{
|
||||
info.minImageCount = cap.minImageCount + 2;
|
||||
}
|
||||
if (cap.currentExtent.width == 0xffffffff)
|
||||
{
|
||||
fb_width = w;
|
||||
|
Loading…
Reference in New Issue
Block a user