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/GraphicsEngineOpenGL | |
| parent | GraphicsTools: added DynamicBuffer class (diff) | |
| download | DiligentCore-02df8a289626a39551528d5019b0b259933b811c.tar.gz DiligentCore-02df8a289626a39551528d5019b0b259933b811c.zip | |
GraphicsTools: added IBufferSuballocator
Diffstat (limited to 'Graphics/GraphicsEngineOpenGL')
| -rw-r--r-- | Graphics/GraphicsEngineOpenGL/include/FenceGLImpl.hpp | 2 | ||||
| -rw-r--r-- | Graphics/GraphicsEngineOpenGL/include/QueryGLImpl.hpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Graphics/GraphicsEngineOpenGL/include/FenceGLImpl.hpp b/Graphics/GraphicsEngineOpenGL/include/FenceGLImpl.hpp index 8c45e713..94df042d 100644 --- a/Graphics/GraphicsEngineOpenGL/include/FenceGLImpl.hpp +++ b/Graphics/GraphicsEngineOpenGL/include/FenceGLImpl.hpp @@ -53,7 +53,7 @@ public: const FenceDesc& Desc); ~FenceGLImpl(); - IMPLEMENT_QUERY_INTERFACE_IN_PLACE(IID_FenceGL, TFenceBase); + IMPLEMENT_QUERY_INTERFACE_IN_PLACE(IID_FenceGL, TFenceBase) /// Implementation of IFence::GetCompletedValue() in OpenGL backend. virtual Uint64 DILIGENT_CALL_TYPE GetCompletedValue() override final; diff --git a/Graphics/GraphicsEngineOpenGL/include/QueryGLImpl.hpp b/Graphics/GraphicsEngineOpenGL/include/QueryGLImpl.hpp index a77b55e1..e4a84e42 100644 --- a/Graphics/GraphicsEngineOpenGL/include/QueryGLImpl.hpp +++ b/Graphics/GraphicsEngineOpenGL/include/QueryGLImpl.hpp @@ -52,7 +52,7 @@ public: const QueryDesc& Desc); ~QueryGLImpl(); - IMPLEMENT_QUERY_INTERFACE_IN_PLACE(IID_QueryGL, TQueryBase); + IMPLEMENT_QUERY_INTERFACE_IN_PLACE(IID_QueryGL, TQueryBase) /// Implementation of IQuery::GetData() in OpenGL backend. virtual bool DILIGENT_CALL_TYPE GetData(void* pData, Uint32 DataSize, bool AutoInvalidate) override final; |
