aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/Gal/GalVertexBinding.cs
blob: 0c3c845d4f03c49bc087a09f1b6af014459ff145 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace Ryujinx.Graphics.Gal
{
    public struct GalVertexBinding
    {
        //VboKey shouldn't be here, but ARB_vertex_attrib_binding is core since 4.3

        public bool Enabled;
        public int Stride;
        public long VboKey;
        public bool Instanced;
        public int Divisor;
        public GalVertexAttrib[] Attribs;
    }
}