ClearFlagBits.generated.cs 288 B

123456789101112131415
  1. using System;
  2. using System.Runtime.CompilerServices;
  3. using System.Runtime.InteropServices;
  4. namespace BansheeEngine
  5. {
  6. /// <summary>Flags that determine which portion of the viewport to clear.</summary>
  7. public enum ClearFlags
  8. {
  9. Empty = 0,
  10. Color = 1,
  11. Depth = 2,
  12. Stencil = 4
  13. }
  14. }