Фикс высоты изображения
This commit is contained in:
parent
f7ff84fab0
commit
83ab14804f
|
@ -361,7 +361,7 @@ void Vulkan::createSwapchain(GLFWwindow* window)
|
|||
, width
|
||||
, surface.capabilities.maxImageExtent.width
|
||||
);
|
||||
surface.selectedExtent.width = CLAMP( surface.capabilities.minImageExtent.height
|
||||
surface.selectedExtent.height = CLAMP( surface.capabilities.minImageExtent.height
|
||||
, height
|
||||
, surface.capabilities.maxImageExtent.height
|
||||
);
|
||||
|
@ -373,7 +373,4 @@ void Vulkan::createSwapchain(GLFWwindow* window)
|
|||
surface.imageCount %= surface.capabilities.maxImageCount;
|
||||
|
||||
|
||||
|
||||
|
||||
//
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue