From 02df8a289626a39551528d5019b0b259933b811c Mon Sep 17 00:00:00 2001 From: assiduous Date: Sun, 6 Dec 2020 17:37:38 -0800 Subject: GraphicsTools: added IBufferSuballocator --- Graphics/GraphicsEngineD3D12/include/FenceD3D12Impl.hpp | 2 +- Graphics/GraphicsEngineD3D12/include/QueryD3D12Impl.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'Graphics/GraphicsEngineD3D12') 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; -- cgit v1.2.3