mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 04:08:35 +00:00
15 lines
282 B
C#
15 lines
282 B
C#
|
namespace Ryujinx.Graphics.Shader
|
||
|
{
|
||
|
public struct CBufferDescriptor
|
||
|
{
|
||
|
public string Name { get; }
|
||
|
|
||
|
public int Slot { get; }
|
||
|
|
||
|
public CBufferDescriptor(string name, int slot)
|
||
|
{
|
||
|
Name = name;
|
||
|
Slot = slot;
|
||
|
}
|
||
|
}
|
||
|
}
|