Merge fix

This commit is contained in:
Jérôme Leclercq
2022-01-23 20:00:11 +01:00
parent 97356349fe
commit 29a01e975c
12 changed files with 8 additions and 15 deletions

View File

@@ -12,12 +12,13 @@
#include <Nazara/Graphics/Config.hpp>
#include <Nazara/Graphics/Enums.hpp>
#include <memory>
#include <optional>
#include <vector>
namespace Nz
{
class AbstractBuffer;
class CommandBufferBuilder;
class RenderBuffer;
class RenderElement;
class RenderFrame;
class ViewerInstance;
@@ -38,7 +39,7 @@ namespace Nz
struct RenderStates
{
std::shared_ptr<AbstractBuffer> lightData;
std::optional<RenderBufferView> lightData;
};
};