summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngineD3D12
diff options
context:
space:
mode:
authorEgor Yusov <egor.yusov@gmail.com>2019-04-16 02:50:18 +0000
committerEgor Yusov <egor.yusov@gmail.com>2019-04-16 02:50:18 +0000
commit8add3f24c9843a80ddb4dc800dc3b3c942a6267d (patch)
treedd9f38a6d51ffa105d3d9319b05c52ee385e5ca1 /Graphics/GraphicsEngineD3D12
parentFixed issue with buffer usage flags (diff)
downloadDiligentCore-8add3f24c9843a80ddb4dc800dc3b3c942a6267d.tar.gz
DiligentCore-8add3f24c9843a80ddb4dc800dc3b3c942a6267d.zip
Fixed grammatic error plus few minor updates
Diffstat (limited to 'Graphics/GraphicsEngineD3D12')
-rw-r--r--Graphics/GraphicsEngineD3D12/src/DeviceContextD3D12Impl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Graphics/GraphicsEngineD3D12/src/DeviceContextD3D12Impl.cpp b/Graphics/GraphicsEngineD3D12/src/DeviceContextD3D12Impl.cpp
index 6144dcea..c0866371 100644
--- a/Graphics/GraphicsEngineD3D12/src/DeviceContextD3D12Impl.cpp
+++ b/Graphics/GraphicsEngineD3D12/src/DeviceContextD3D12Impl.cpp
@@ -1597,7 +1597,7 @@ namespace Diligent
void DeviceContextD3D12Impl::SignalFence(IFence* pFence, Uint64 Value)
{
- VERIFY(!m_bIsDeferred, "Fence can only be signalled from immediate context");
+ VERIFY(!m_bIsDeferred, "Fence can only be signaled from immediate context");
m_PendingFences.emplace_back(Value, pFence);
};