diff options
| author | Thomas Bishop <tomb@artfulassemblage.com> | 2019-04-13 15:03:08 +0000 |
|---|---|---|
| committer | Thomas Bishop <tomb@artfulassemblage.com> | 2019-04-13 15:03:08 +0000 |
| commit | 99b10ef49bbeb02c80af19fb158f566c73183890 (patch) | |
| tree | cffc8996c70359101ebbe4d6feb133ea34aef3b4 /Graphics/GraphicsEngineVulkan | |
| parent | Improved mipmap generation in D3D12 backend (diff) | |
| download | DiligentCore-99b10ef49bbeb02c80af19fb158f566c73183890.tar.gz DiligentCore-99b10ef49bbeb02c80af19fb158f566c73183890.zip | |
Minor typo.
Diffstat (limited to 'Graphics/GraphicsEngineVulkan')
| -rw-r--r-- | Graphics/GraphicsEngineVulkan/src/SwapChainVkImpl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Graphics/GraphicsEngineVulkan/src/SwapChainVkImpl.cpp b/Graphics/GraphicsEngineVulkan/src/SwapChainVkImpl.cpp index 7277a744..cf3cba5f 100644 --- a/Graphics/GraphicsEngineVulkan/src/SwapChainVkImpl.cpp +++ b/Graphics/GraphicsEngineVulkan/src/SwapChainVkImpl.cpp @@ -165,12 +165,12 @@ void SwapChainVkImpl::CreateVulkanSwapChain() { m_VkColorFormat = VkReplacementColorFormat; auto NewColorBufferFormat = VkFormatToTexFormat(VkReplacementColorFormat); - LOG_INFO_MESSAGE("Requested color buffer format ", GetTextureFormatAttribs(m_SwapChainDesc.ColorBufferFormat).Name, " is not supported by the surace and will be replaced with ", GetTextureFormatAttribs(NewColorBufferFormat).Name); + LOG_INFO_MESSAGE("Requested color buffer format ", GetTextureFormatAttribs(m_SwapChainDesc.ColorBufferFormat).Name, " is not supported by the surface and will be replaced with ", GetTextureFormatAttribs(NewColorBufferFormat).Name); m_SwapChainDesc.ColorBufferFormat = NewColorBufferFormat; } else { - LOG_WARNING_MESSAGE("Requested color buffer format ", GetTextureFormatAttribs(m_SwapChainDesc.ColorBufferFormat).Name ,"is not supported by the surace"); + LOG_WARNING_MESSAGE("Requested color buffer format ", GetTextureFormatAttribs(m_SwapChainDesc.ColorBufferFormat).Name ,"is not supported by the surface"); } } } |
