diff options
| author | Egor Yusov <egor.yusov@gmail.com> | 2019-04-16 02:50:18 +0000 |
|---|---|---|
| committer | Egor Yusov <egor.yusov@gmail.com> | 2019-04-16 02:50:18 +0000 |
| commit | 8add3f24c9843a80ddb4dc800dc3b3c942a6267d (patch) | |
| tree | dd9f38a6d51ffa105d3d9319b05c52ee385e5ca1 /Graphics/GraphicsEngineD3D11 | |
| parent | Fixed issue with buffer usage flags (diff) | |
| download | DiligentCore-8add3f24c9843a80ddb4dc800dc3b3c942a6267d.tar.gz DiligentCore-8add3f24c9843a80ddb4dc800dc3b3c942a6267d.zip | |
Fixed grammatic error plus few minor updates
Diffstat (limited to 'Graphics/GraphicsEngineD3D11')
| -rwxr-xr-x | Graphics/GraphicsEngineD3D11/src/DeviceContextD3D11Impl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Graphics/GraphicsEngineD3D11/src/DeviceContextD3D11Impl.cpp b/Graphics/GraphicsEngineD3D11/src/DeviceContextD3D11Impl.cpp index d5f074c5..ea121585 100755 --- a/Graphics/GraphicsEngineD3D11/src/DeviceContextD3D11Impl.cpp +++ b/Graphics/GraphicsEngineD3D11/src/DeviceContextD3D11Impl.cpp @@ -1746,7 +1746,7 @@ namespace Diligent void DeviceContextD3D11Impl::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");
auto* pd3d11Device = m_pDevice.RawPtr<RenderDeviceD3D11Impl>()->GetD3D11Device();
D3D11_QUERY_DESC QueryDesc = {};
QueryDesc.Query = D3D11_QUERY_EVENT; // Determines whether or not the GPU is finished processing commands.
|
