VulkanRenderer: Fix views and arrays support

This commit is contained in:
SirLynix
2022-12-02 22:59:07 +01:00
committed by Jérôme Leclercq
parent 56acbb2694
commit 4ae3f51174
6 changed files with 73 additions and 15 deletions

View File

@@ -16,6 +16,11 @@ namespace Nz
{
return m_imageView;
}
inline const VkImageSubresourceRange& VulkanTexture::GetSubresourceRange() const
{
return m_imageRange;
}
}
#include <Nazara/VulkanRenderer/DebugOff.hpp>