MoonWorks/src/Graphics/State/ColorBlendState.cs

15 lines
447 B
C#
Raw Normal View History

namespace MoonWorks.Graphics
{
2021-02-24 20:43:35 +00:00
/// <summary>
/// Describes how the graphics pipeline will blend colors.
/// You must provide one ColorTargetBlendState per color target in the pipeline.
/// </summary>
public unsafe struct ColorBlendState
{
public bool LogicOpEnable;
public LogicOp LogicOp;
public BlendConstants BlendConstants;
public ColorTargetBlendState[] ColorTargetBlendStates;
}
}