Found faulty line where width instead of height was set
This commit is contained in:
@@ -366,7 +366,7 @@ namespace vapp{
|
||||
|
||||
actualExtent.width = std::clamp(actualExtent.width, capabilities.minImageExtent.width,
|
||||
capabilities.maxImageExtent.width);
|
||||
actualExtent.width = std::clamp(actualExtent.height, capabilities.minImageExtent.height,
|
||||
actualExtent.height = std::clamp(actualExtent.height, capabilities.minImageExtent.height,
|
||||
capabilities.maxImageExtent.height);
|
||||
|
||||
return actualExtent;
|
||||
|
||||
Reference in New Issue
Block a user