summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngineVulkan
diff options
context:
space:
mode:
Diffstat (limited to 'Graphics/GraphicsEngineVulkan')
-rw-r--r--Graphics/GraphicsEngineVulkan/include/BufferViewVkImpl.hpp2
-rw-r--r--Graphics/GraphicsEngineVulkan/include/SwapChainVkImpl.hpp3
-rw-r--r--Graphics/GraphicsEngineVulkan/include/TextureViewVkImpl.hpp2
3 files changed, 2 insertions, 5 deletions
diff --git a/Graphics/GraphicsEngineVulkan/include/BufferViewVkImpl.hpp b/Graphics/GraphicsEngineVulkan/include/BufferViewVkImpl.hpp
index e6a18966..7dfd2917 100644
--- a/Graphics/GraphicsEngineVulkan/include/BufferViewVkImpl.hpp
+++ b/Graphics/GraphicsEngineVulkan/include/BufferViewVkImpl.hpp
@@ -51,7 +51,7 @@ public:
BufferViewVkImpl(IReferenceCounters* pRefCounters,
RenderDeviceVkImpl* pDevice,
const BufferViewDesc& ViewDesc,
- class IBuffer* pBuffer,
+ IBuffer* pBuffer,
VulkanUtilities::BufferViewWrapper&& BuffView,
bool bIsDefaultView);
~BufferViewVkImpl();
diff --git a/Graphics/GraphicsEngineVulkan/include/SwapChainVkImpl.hpp b/Graphics/GraphicsEngineVulkan/include/SwapChainVkImpl.hpp
index 961343f2..89a20137 100644
--- a/Graphics/GraphicsEngineVulkan/include/SwapChainVkImpl.hpp
+++ b/Graphics/GraphicsEngineVulkan/include/SwapChainVkImpl.hpp
@@ -39,9 +39,6 @@
namespace Diligent
{
-class ITextureViewVk;
-class IMemoryAllocator;
-
/// Swap chain implementation in Vulkan backend.
class SwapChainVkImpl final : public SwapChainBase<ISwapChainVk>
{
diff --git a/Graphics/GraphicsEngineVulkan/include/TextureViewVkImpl.hpp b/Graphics/GraphicsEngineVulkan/include/TextureViewVkImpl.hpp
index 5731512f..e4ebf33b 100644
--- a/Graphics/GraphicsEngineVulkan/include/TextureViewVkImpl.hpp
+++ b/Graphics/GraphicsEngineVulkan/include/TextureViewVkImpl.hpp
@@ -50,7 +50,7 @@ public:
TextureViewVkImpl(IReferenceCounters* pRefCounters,
RenderDeviceVkImpl* pDevice,
const TextureViewDesc& ViewDesc,
- class ITexture* pTexture,
+ ITexture* pTexture,
VulkanUtilities::ImageViewWrapper&& ImgView,
bool bIsDefaultView);
~TextureViewVkImpl();