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/GraphicsEngineVulkan/include/FenceVkImpl.hpp | 2 +- Graphics/GraphicsEngineVulkan/include/QueryVkImpl.hpp | 2 +- Graphics/GraphicsEngineVulkan/include/ShaderVkImpl.hpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'Graphics/GraphicsEngineVulkan') 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 -- cgit v1.2.3