summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngineD3D12
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/GraphicsEngineD3D12
parentGraphicsTools: added DynamicBuffer class (diff)
downloadDiligentCore-02df8a289626a39551528d5019b0b259933b811c.tar.gz
DiligentCore-02df8a289626a39551528d5019b0b259933b811c.zip
GraphicsTools: added IBufferSuballocator
Diffstat (limited to 'Graphics/GraphicsEngineD3D12')
-rw-r--r--Graphics/GraphicsEngineD3D12/include/FenceD3D12Impl.hpp2
-rw-r--r--Graphics/GraphicsEngineD3D12/include/QueryD3D12Impl.hpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/Graphics/GraphicsEngineD3D12/include/FenceD3D12Impl.hpp b/Graphics/GraphicsEngineD3D12/include/FenceD3D12Impl.hpp
index 845eabac..78fa3754 100644
--- a/Graphics/GraphicsEngineD3D12/include/FenceD3D12Impl.hpp
+++ b/Graphics/GraphicsEngineD3D12/include/FenceD3D12Impl.hpp
@@ -51,7 +51,7 @@ public:
const FenceDesc& Desc);
~FenceD3D12Impl();
- IMPLEMENT_QUERY_INTERFACE_IN_PLACE(IID_FenceD3D12, TFenceBase);
+ IMPLEMENT_QUERY_INTERFACE_IN_PLACE(IID_FenceD3D12, TFenceBase)
/// Implementation of IFence::GetCompletedValue() in Direct3D12 backend.
virtual Uint64 DILIGENT_CALL_TYPE GetCompletedValue() override final;
diff --git a/Graphics/GraphicsEngineD3D12/include/QueryD3D12Impl.hpp b/Graphics/GraphicsEngineD3D12/include/QueryD3D12Impl.hpp
index ab31743f..4ee325c3 100644
--- a/Graphics/GraphicsEngineD3D12/include/QueryD3D12Impl.hpp
+++ b/Graphics/GraphicsEngineD3D12/include/QueryD3D12Impl.hpp
@@ -53,7 +53,7 @@ public:
const QueryDesc& Desc);
~QueryD3D12Impl();
- IMPLEMENT_QUERY_INTERFACE_IN_PLACE(IID_QueryD3D12, TQueryBase);
+ IMPLEMENT_QUERY_INTERFACE_IN_PLACE(IID_QueryD3D12, TQueryBase)
/// Implementation of IQuery::GetData().
virtual bool DILIGENT_CALL_TYPE GetData(void* pData, Uint32 DataSize, bool AutoInvalidate) override final;