aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Shader/BufferDescriptor.cs
blob: 4cc999989ed05c6f0bcfd5ab15bcb6085ee2bd56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
namespace Ryujinx.Graphics.Shader
{
    public struct BufferDescriptor
    {
        public string Name { get; }

        public int Slot { get; }

        public BufferDescriptor(string name, int slot)
        {
            Name = name;
            Slot = slot;
        }
    }
}