blob: 99855518f2dc0a2181369e1ed69f7e347ac6534c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
namespace Ryujinx.Graphics.Shader
{
public struct BufferDescriptor
{
public int Binding { get; }
public int Slot { get; }
public BufferDescriptor(int binding, int slot)
{
Binding = binding;
Slot = slot;
}
}
}
|