namespace MoonWorks.Graphics { /// /// Describes the kind of attachments that will be used with this pipeline. /// public struct GraphicsPipelineAttachmentInfo { public ColorAttachmentDescription[] ColorAttachmentDescriptions; public bool HasDepthStencilAttachment; public TextureFormat DepthStencilFormat; } }