aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.OpenGL/VertexBuffer.cs
blob: 19a58053c1718a132f2492a7343108c1ea9cb600 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using Ryujinx.Graphics.GAL;

namespace Ryujinx.Graphics.OpenGL
{
    struct VertexBuffer
    {
        public BufferRange Range { get; }

        public int Divisor { get; }
        public int Stride  { get; }

        public VertexBuffer(BufferRange range, int divisor, int stride)
        {
            Range   = range;
            Divisor = divisor;
            Stride  = stride;
        }
    }
}