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

namespace Ryujinx.Graphics.Gpu.State
{
    /// <summary>
    /// GPU index buffer state.
    /// This is used on indexed draws.
    /// </summary>
    struct IndexBufferState
    {
        public GpuVa     Address;
        public GpuVa     EndAddress;
        public IndexType Type;
        public int       First;
        public int       Count;
    }
}