Renderer: Add RenderDevice::GetDeviceInfo()

This commit is contained in:
Jérôme Leclercq
2021-05-14 01:55:16 +02:00
parent adbf1e1da0
commit aeac3282e4
11 changed files with 114 additions and 45 deletions

View File

@@ -7,6 +7,11 @@
namespace Nz
{
inline VulkanDevice::VulkanDevice(Vk::Instance& instance, RenderDeviceInfo renderDeviceInfo) :
Device(instance),
m_renderDeviceInfo(std::move(renderDeviceInfo))
{
}
}
#include <Nazara/VulkanRenderer/DebugOff.hpp>