summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngineVulkan
diff options
context:
space:
mode:
authorEgor Yusov <egor.yusov@gmail.com>2018-11-03 07:56:26 +0000
committerEgor Yusov <egor.yusov@gmail.com>2018-11-03 07:56:26 +0000
commit4b08ef47565e415536e7a61e091107d58c50875b (patch)
tree585132e4b8d7dcdd92d010b9c1dfb5dc3b1767fd /Graphics/GraphicsEngineVulkan
parentFixed Windows build (diff)
downloadDiligentCore-4b08ef47565e415536e7a61e091107d58c50875b.tar.gz
DiligentCore-4b08ef47565e415536e7a61e091107d58c50875b.zip
Fixed odd symbol
Diffstat (limited to 'Graphics/GraphicsEngineVulkan')
-rw-r--r--Graphics/GraphicsEngineVulkan/src/TextureVkImpl.cpp2
1 files changed, 1 insertions, 1 deletions
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);