mirror of
https://github.com/Drezil/imgui.git
synced 2024-11-22 20:07:01 +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);
|
err = vkGetPhysicalDeviceSurfaceCapabilitiesKHR(g_Gpu, g_Surface, &cap);
|
||||||
check_vk_result(err);
|
check_vk_result(err);
|
||||||
if (cap.maxImageCount > 0)
|
if (cap.maxImageCount > 0)
|
||||||
{
|
|
||||||
info.minImageCount = (cap.minImageCount + 2 < cap.maxImageCount) ? (cap.minImageCount + 2) : cap.maxImageCount;
|
info.minImageCount = (cap.minImageCount + 2 < cap.maxImageCount) ? (cap.minImageCount + 2) : cap.maxImageCount;
|
||||||
}
|
|
||||||
else
|
else
|
||||||
{
|
|
||||||
info.minImageCount = cap.minImageCount + 2;
|
info.minImageCount = cap.minImageCount + 2;
|
||||||
}
|
|
||||||
if (cap.currentExtent.width == 0xffffffff)
|
if (cap.currentExtent.width == 0xffffffff)
|
||||||
{
|
{
|
||||||
fb_width = w;
|
fb_width = w;
|
||||||
|
Loading…
Reference in New Issue
Block a user