mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-25 03:20:18 +00:00
20 lines
No EOL
552 B
C#
20 lines
No EOL
552 B
C#
namespace Ryujinx.Graphics.Shader.StructuredIr
|
|
{
|
|
readonly struct BufferDefinition
|
|
{
|
|
public BufferLayout Layout { get; }
|
|
public int Set { get; }
|
|
public int Binding { get; }
|
|
public string Name { get; }
|
|
public StructureType Type { get; }
|
|
|
|
public BufferDefinition(BufferLayout layout, int set, int binding, string name, StructureType type)
|
|
{
|
|
Layout = layout;
|
|
Set = set;
|
|
Binding = binding;
|
|
Name = name;
|
|
Type = type;
|
|
}
|
|
}
|
|
} |