using System; namespace XCEngine { [Flags] public enum RenderClearFlags { None = 0, Color = 1 << 0, Depth = 1 << 1, All = Color | Depth } }