From 90c4721add258479c49e82089ad5baa2533cb899 Mon Sep 17 00:00:00 2001 From: assiduous Date: Sat, 25 Apr 2020 09:51:53 -0700 Subject: Vulkan swap chain: improved swap chain destruction --- Graphics/GraphicsEngine/interface/GraphicsTypes.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'Graphics/GraphicsEngine') diff --git a/Graphics/GraphicsEngine/interface/GraphicsTypes.h b/Graphics/GraphicsEngine/interface/GraphicsTypes.h index ccaaeae2..ef786105 100644 --- a/Graphics/GraphicsEngine/interface/GraphicsTypes.h +++ b/Graphics/GraphicsEngine/interface/GraphicsTypes.h @@ -1306,13 +1306,13 @@ struct SwapChainDesc /// Constructor intializes the structure members with default values SwapChainDesc(Uint32 _Width, - Uint32 _Height, - TEXTURE_FORMAT _ColorBufferFormat, - TEXTURE_FORMAT _DepthBufferFormat, - Uint32 _BufferCount = SwapChainDesc{}.BufferCount, - Float32 _DefaultDepthValue = SwapChainDesc{}.DefaultDepthValue, - Uint8 _DefaultStencilValue = SwapChainDesc{}.DefaultStencilValue, - bool _IsPrimary = SwapChainDesc{}.IsPrimary) : + Uint32 _Height, + TEXTURE_FORMAT _ColorBufferFormat, + TEXTURE_FORMAT _DepthBufferFormat, + Uint32 _BufferCount = SwapChainDesc{}.BufferCount, + Float32 _DefaultDepthValue = SwapChainDesc{}.DefaultDepthValue, + Uint8 _DefaultStencilValue = SwapChainDesc{}.DefaultStencilValue, + bool _IsPrimary = SwapChainDesc{}.IsPrimary) : Width {_Width }, Height {_Height }, ColorBufferFormat {_ColorBufferFormat }, -- cgit v1.2.3