Campari/src/State/ColorBlendState.cs

13 lines
277 B
C#
Raw Normal View History

2021-01-15 01:25:15 +00:00
using RefreshCS;
namespace Campari
{
public unsafe struct ColorBlendState
{
public bool LogicOpEnable;
public Refresh.LogicOp LogicOp;
public BlendConstants BlendConstants;
2021-01-16 02:08:58 +00:00
public ColorTargetBlendState[] ColorTargetBlendStates;
2021-01-15 01:25:15 +00:00
}
}