1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
using Ryujinx.Graphics.GAL; namespace Ryujinx.Graphics.Gpu.State { /// <summary> /// Face culling and orientation parameters. /// </summary> struct FaceState { #pragma warning disable CS0649 public Boolean32 CullEnable; public FrontFace FrontFace; public Face CullFace; #pragma warning restore CS0649 } }