From 4b08ef47565e415536e7a61e091107d58c50875b Mon Sep 17 00:00:00 2001 From: Egor Yusov Date: Sat, 3 Nov 2018 00:56:26 -0700 Subject: Fixed odd symbol --- Graphics/GraphicsEngineVulkan/src/TextureVkImpl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Graphics/GraphicsEngineVulkan') diff --git a/Graphics/GraphicsEngineVulkan/src/TextureVkImpl.cpp b/Graphics/GraphicsEngineVulkan/src/TextureVkImpl.cpp index 97381efd..50cdbb02 100644 --- a/Graphics/GraphicsEngineVulkan/src/TextureVkImpl.cpp +++ b/Graphics/GraphicsEngineVulkan/src/TextureVkImpl.cpp @@ -247,7 +247,7 @@ TextureVkImpl :: TextureVkImpl(IReferenceCounters* pRefCounters, VERIFY(SubResData.DepthStride == 0 || SubResData.DepthStride >= RowSize * MipHeight, "Depth stride is too small"); // bufferOffset must be a multiple of 4 (18.4) - // If the calling command�s VkImage parameter is a compressed image, bufferOffset + // If the calling command's VkImage parameter is a compressed image, bufferOffset // must be a multiple of the compressed texel block size in bytes (18.4). This // is automatically guaranteed as MipWidth and MipHeight are rounded to block size uploadBufferSize += (MipSize + 3) & (~3); -- cgit v1.2.3