namespace MoonWorks.Graphics { /// /// Describes how the graphics pipeline will blend colors. /// public unsafe struct ColorBlendState { public bool LogicOpEnable; public LogicOp LogicOp; public BlendConstants BlendConstants; } }