namespace Ryujinx.Graphics.Gpu.State { /// /// Draw state for non-indexed draws. /// struct VertexBufferDrawState { #pragma warning disable CS0649 public int First; public int Count; #pragma warning restore CS0649 } }