mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-05-03 22:37:43 +02:00
14 lines
No EOL
285 B
C#
14 lines
No EOL
285 B
C#
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;
|
|
}
|
|
}
|
|
} |