summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngine
diff options
context:
space:
mode:
authorassiduous <assiduous@diligentgraphics.com>2020-04-25 16:51:53 +0000
committerassiduous <assiduous@diligentgraphics.com>2020-04-25 16:51:53 +0000
commit90c4721add258479c49e82089ad5baa2533cb899 (patch)
tree99335e2bba382ba6dd10a01cdb297932c4b2c2e6 /Graphics/GraphicsEngine
parentFixed typo (diff)
downloadDiligentCore-90c4721add258479c49e82089ad5baa2533cb899.tar.gz
DiligentCore-90c4721add258479c49e82089ad5baa2533cb899.zip
Vulkan swap chain: improved swap chain destruction
Diffstat (limited to 'Graphics/GraphicsEngine')
-rw-r--r--Graphics/GraphicsEngine/interface/GraphicsTypes.h14
1 files changed, 7 insertions, 7 deletions
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 },