mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-01-28 18:46:47 -06:00
20 lines
552 B
C#
20 lines
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;
|
|
}
|
|
}
|
|
} |