diff options
Diffstat (limited to 'Ryujinx.Graphics.Shader/BufferDescriptor.cs')
| -rw-r--r-- | Ryujinx.Graphics.Shader/BufferDescriptor.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.Shader/BufferDescriptor.cs b/Ryujinx.Graphics.Shader/BufferDescriptor.cs new file mode 100644 index 00000000..4cc99998 --- /dev/null +++ b/Ryujinx.Graphics.Shader/BufferDescriptor.cs @@ -0,0 +1,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; + } + } +}
\ No newline at end of file |
