PolygonModeMask.cs
1 using System; 2 3 namespace Ryujinx.Graphics.GAL 4 { 5 [Flags] 6 public enum PolygonModeMask 7 { 8 Point = 1 << 0, 9 Line = 1 << 1, 10 Fill = 1 << 2, 11 } 12 }
1 using System; 2 3 namespace Ryujinx.Graphics.GAL 4 { 5 [Flags] 6 public enum PolygonModeMask 7 { 8 Point = 1 << 0, 9 Line = 1 << 1, 10 Fill = 1 << 2, 11 } 12 }