Ryujinx/Ryujinx.Graphics.Gpu/State/VertexBufferDrawState.cs

14 lines
279 B
C#

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