diff options
| author | assiduous <assiduous@diligentgraphics.com> | 2020-12-07 01:37:38 +0000 |
|---|---|---|
| committer | assiduous <assiduous@diligentgraphics.com> | 2020-12-07 01:37:38 +0000 |
| commit | 02df8a289626a39551528d5019b0b259933b811c (patch) | |
| tree | e97a2ca3e089664b8321d72f9d0e1687ab2d7ad6 /Graphics/GraphicsEngineD3D11 | |
| parent | GraphicsTools: added DynamicBuffer class (diff) | |
| download | DiligentCore-02df8a289626a39551528d5019b0b259933b811c.tar.gz DiligentCore-02df8a289626a39551528d5019b0b259933b811c.zip | |
GraphicsTools: added IBufferSuballocator
Diffstat (limited to 'Graphics/GraphicsEngineD3D11')
| -rw-r--r-- | Graphics/GraphicsEngineD3D11/include/FenceD3D11Impl.hpp | 2 | ||||
| -rw-r--r-- | Graphics/GraphicsEngineD3D11/include/QueryD3D11Impl.hpp | 2 |
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; |
