示例#1
0
 /// <summary>
 /// Constructs a new <see cref="BlendStateDescription"/>,
 /// </summary>
 /// <param name="blendFactor">The constant blend color.</param>
 /// <param name="attachmentStates">The blend attachment states.</param>
 public BlendStateDescription(RgbaFloat blendFactor, params BlendAttachmentDescription[] attachmentStates)
 {
     BlendFactor            = blendFactor;
     AttachmentStates       = attachmentStates;
     AlphaToCoverageEnabled = false;
 }
示例#2
0
 protected abstract void ClearColorTargetCore(uint index, RgbaFloat clearColor);