Campari/src/State/ColorBlendState.cs

13 lines
285 B
C#

using RefreshCS;
namespace Campari
{
public unsafe struct ColorBlendState
{
public bool LogicOpEnable;
public Refresh.LogicOp LogicOp;
public BlendConstants BlendConstants;
public Refresh.ColorTargetBlendState[] ColorTargetBlendStates;
}
}