summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngineVulkan
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/GraphicsEngineVulkan
parentGraphicsTools: added DynamicBuffer class (diff)
downloadDiligentCore-02df8a289626a39551528d5019b0b259933b811c.tar.gz
DiligentCore-02df8a289626a39551528d5019b0b259933b811c.zip
GraphicsTools: added IBufferSuballocator
Diffstat (limited to 'Graphics/GraphicsEngineVulkan')
-rw-r--r--Graphics/GraphicsEngineVulkan/include/FenceVkImpl.hpp2
-rw-r--r--Graphics/GraphicsEngineVulkan/include/QueryVkImpl.hpp2
-rw-r--r--Graphics/GraphicsEngineVulkan/include/ShaderVkImpl.hpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/Graphics/GraphicsEngineVulkan/include/FenceVkImpl.hpp b/Graphics/GraphicsEngineVulkan/include/FenceVkImpl.hpp
index f36da9f3..5871bae0 100644
--- a/Graphics/GraphicsEngineVulkan/include/FenceVkImpl.hpp
+++ b/Graphics/GraphicsEngineVulkan/include/FenceVkImpl.hpp
@@ -53,7 +53,7 @@ public:
bool IsDeviceInternal = false);
~FenceVkImpl();
- IMPLEMENT_QUERY_INTERFACE_IN_PLACE(IID_FenceVk, TFenceBase);
+ IMPLEMENT_QUERY_INTERFACE_IN_PLACE(IID_FenceVk, TFenceBase)
/// Implementation of IFence::GetCompletedValue() in Vulkan backend.
/// Note that this method is not thread-safe. The reason is that VulkanFencePool is not thread
diff --git a/Graphics/GraphicsEngineVulkan/include/QueryVkImpl.hpp b/Graphics/GraphicsEngineVulkan/include/QueryVkImpl.hpp
index 11bacb61..a4f853bc 100644
--- a/Graphics/GraphicsEngineVulkan/include/QueryVkImpl.hpp
+++ b/Graphics/GraphicsEngineVulkan/include/QueryVkImpl.hpp
@@ -54,7 +54,7 @@ public:
bool IsDeviceInternal = false);
~QueryVkImpl();
- IMPLEMENT_QUERY_INTERFACE_IN_PLACE(IID_QueryVk, TQueryBase);
+ IMPLEMENT_QUERY_INTERFACE_IN_PLACE(IID_QueryVk, TQueryBase)
/// Implementation of IQuery::GetData().
virtual bool DILIGENT_CALL_TYPE GetData(void* pData, Uint32 DataSize, bool AutoInvalidate) override final;
diff --git a/Graphics/GraphicsEngineVulkan/include/ShaderVkImpl.hpp b/Graphics/GraphicsEngineVulkan/include/ShaderVkImpl.hpp
index f652097c..b66b2b2a 100644
--- a/Graphics/GraphicsEngineVulkan/include/ShaderVkImpl.hpp
+++ b/Graphics/GraphicsEngineVulkan/include/ShaderVkImpl.hpp
@@ -51,7 +51,7 @@ public:
ShaderVkImpl(IReferenceCounters* pRefCounters, RenderDeviceVkImpl* pRenderDeviceVk, const ShaderCreateInfo& CreationAttribs);
~ShaderVkImpl();
- IMPLEMENT_QUERY_INTERFACE_IN_PLACE(IID_ShaderVk, TShaderBase);
+ IMPLEMENT_QUERY_INTERFACE_IN_PLACE(IID_ShaderVk, TShaderBase)
/// Implementation of IShader::GetResourceCount() in Vulkan backend.
virtual Uint32 DILIGENT_CALL_TYPE GetResourceCount() const override final