diff options
| author | DiligentGraphics <admin@diligentgraphics.com> | 2019-04-13 15:51:40 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-04-13 15:51:40 +0000 |
| commit | 6d6e3122bc0a0f2d3a2719717743533153d4de4f (patch) | |
| tree | cffc8996c70359101ebbe4d6feb133ea34aef3b4 /Graphics/GraphicsEngineVulkan | |
| parent | Improved mipmap generation in D3D12 backend (diff) | |
| parent | Minor typo. (diff) | |
| download | DiligentCore-6d6e3122bc0a0f2d3a2719717743533153d4de4f.tar.gz DiligentCore-6d6e3122bc0a0f2d3a2719717743533153d4de4f.zip | |
Merge pull request #84 from tombish/master
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"); } } } |
