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