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

@@ -9,11 +9,18 @@
#include <Nazara/Prerequisites.hpp>
#include <Nazara/Renderer/Enums.hpp>
#include <string>
namespace Nz
{
struct RenderDeviceLimits
{
UInt64 minUniformBufferOffsetAlignment;
};
struct RenderDeviceInfo
{
RenderDeviceLimits limits;
RenderDeviceType type;
std::string name;
};