aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Gpu/State/IndexBufferState.cs
blob: 8a07bb5205f8ee994d614026c216d42fce365832 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using Ryujinx.Graphics.GAL;

namespace Ryujinx.Graphics.Gpu.State
{
    struct IndexBufferState
    {
        public GpuVa     Address;
        public GpuVa     EndAddress;
        public IndexType Type;
        public int       First;
        public int       Count;
    }
}