using System; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; namespace BansheeEngine { /// Flags that determine which portion of the viewport to clear. public enum ClearFlags { Empty = 0, Color = 1, Depth = 2, Stencil = 4 } }