This commit is contained in:
Lynix
2020-03-01 20:31:41 +01:00
parent 286461c482
commit 7180a8d94e
2 changed files with 8 additions and 2 deletions

View File

@@ -9,9 +9,13 @@
#include <Nazara/Prerequisites.hpp>
#include <Nazara/Utility/Enums.hpp>
#include <memory>
#include <vector>
namespace Nz
{
class ShaderStageImpl;
struct RenderStates
{
BlendFunc dstBlend = BlendFunc_Zero;
@@ -32,6 +36,8 @@ namespace Nz
UInt32 writeMask = 0xFFFFFFFF;
} stencilBack, stencilFront;
std::vector<std::shared_ptr<ShaderStageImpl>> shaderStages;
bool blending = false;
bool colorWrite = true;
bool depthBuffer = false;