Campari/src/State/ColorBlendState.cs

13 lines
277 B
C#

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