From 5f28d47af17eec8632ea0437066631f2353cecba Mon Sep 17 00:00:00 2001 From: assiduous Date: Mon, 27 Apr 2020 13:29:49 -0700 Subject: Improved swap chain resize handling on Android --- Graphics/GraphicsEngineVulkan/src/SwapChainVkImpl.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'Graphics/GraphicsEngineVulkan') diff --git a/Graphics/GraphicsEngineVulkan/src/SwapChainVkImpl.cpp b/Graphics/GraphicsEngineVulkan/src/SwapChainVkImpl.cpp index b6337999..e0e27333 100644 --- a/Graphics/GraphicsEngineVulkan/src/SwapChainVkImpl.cpp +++ b/Graphics/GraphicsEngineVulkan/src/SwapChainVkImpl.cpp @@ -248,6 +248,7 @@ void SwapChainVkImpl::CreateVulkanSwapChain() // https://community.arm.com/developer/tools-software/graphics/b/blog/posts/appropriate-use-of-surface-rotation vkPreTransform = surfCapabilities.currentTransform; m_SwapChainDesc.PreTransform = VkSurfaceTransformFlagToSurfaceTransform(vkPreTransform); + LOG_INFO_MESSAGE("Using ", GetSurfaceTransformString(m_SwapChainDesc.PreTransform), " swap chain pretransform"); } VkExtent2D swapchainExtent = {}; -- cgit v1.2.3