aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Gpu/Memory/VertexBuffer.cs
blob: 1cb854d63643f21184059b30e34525934c3ff5b3 (plain)
1
2
3
4
5
6
7
8
9
10
namespace Ryujinx.Graphics.Gpu.Memory
{
    struct VertexBuffer
    {
        public ulong Address;
        public ulong Size;
        public int   Stride;
        public int   Divisor;
    }
}