GalClearBufferFlags.cs 282 B

123456789101112131415
  1. using System;
  2. namespace Ryujinx.Graphics.Gal
  3. {
  4. [Flags]
  5. public enum GalClearBufferFlags
  6. {
  7. Depth = 1 << 0,
  8. Stencil = 1 << 1,
  9. ColorRed = 1 << 2,
  10. ColorGreen = 1 << 3,
  11. ColorBlue = 1 << 4,
  12. ColorAlpha = 1 << 5
  13. }
  14. }