summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngineD3D11
diff options
context:
space:
mode:
authorassiduous <assiduous@diligentgraphics.com>2020-12-07 01:37:38 +0000
committerassiduous <assiduous@diligentgraphics.com>2020-12-07 01:37:38 +0000
commit02df8a289626a39551528d5019b0b259933b811c (patch)
treee97a2ca3e089664b8321d72f9d0e1687ab2d7ad6 /Graphics/GraphicsEngineD3D11
parentGraphicsTools: added DynamicBuffer class (diff)
downloadDiligentCore-02df8a289626a39551528d5019b0b259933b811c.tar.gz
DiligentCore-02df8a289626a39551528d5019b0b259933b811c.zip
GraphicsTools: added IBufferSuballocator
Diffstat (limited to 'Graphics/GraphicsEngineD3D11')
-rw-r--r--Graphics/GraphicsEngineD3D11/include/FenceD3D11Impl.hpp2
-rw-r--r--Graphics/GraphicsEngineD3D11/include/QueryD3D11Impl.hpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/Graphics/GraphicsEngineD3D11/include/FenceD3D11Impl.hpp b/Graphics/GraphicsEngineD3D11/include/FenceD3D11Impl.hpp
index 055fd19e..6aaddada 100644
--- a/Graphics/GraphicsEngineD3D11/include/FenceD3D11Impl.hpp
+++ b/Graphics/GraphicsEngineD3D11/include/FenceD3D11Impl.hpp
@@ -52,7 +52,7 @@ public:
const FenceDesc& Desc);
~FenceD3D11Impl();
- IMPLEMENT_QUERY_INTERFACE_IN_PLACE(IID_FenceD3D11, TFenceBase);
+ IMPLEMENT_QUERY_INTERFACE_IN_PLACE(IID_FenceD3D11, TFenceBase)
/// Implementation of IFence::GetCompletedValue() in Direct3D11 backend.
virtual Uint64 DILIGENT_CALL_TYPE GetCompletedValue() override final;
diff --git a/Graphics/GraphicsEngineD3D11/include/QueryD3D11Impl.hpp b/Graphics/GraphicsEngineD3D11/include/QueryD3D11Impl.hpp
index ece79c6a..1dbcb09d 100644
--- a/Graphics/GraphicsEngineD3D11/include/QueryD3D11Impl.hpp
+++ b/Graphics/GraphicsEngineD3D11/include/QueryD3D11Impl.hpp
@@ -53,7 +53,7 @@ public:
const QueryDesc& Desc);
~QueryD3D11Impl();
- IMPLEMENT_QUERY_INTERFACE_IN_PLACE(IID_QueryD3D11, TQueryBase);
+ IMPLEMENT_QUERY_INTERFACE_IN_PLACE(IID_QueryD3D11, TQueryBase)
/// Implementation of IQuery::GetData().
virtual bool DILIGENT_CALL_TYPE GetData(void* pData, Uint32 DataSize, bool AutoInvalidate) override final;