aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.Gpu/Memory/VertexBuffer.cs
blob: ac334881dcd39a4a70dd1493df742a46ea252e2a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
namespace Ryujinx.Graphics.Gpu.Memory
{
    /// <summary>
    /// GPU Vertex Buffer information.
    /// </summary>
    struct VertexBuffer
    {
        public ulong Address;
        public ulong Size;
        public int Stride;
        public int Divisor;
    }
}