mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-01-09 20:29:11 +00:00
18 lines
458 B
C#
18 lines
458 B
C#
|
using Ryujinx.Graphics.Shader.Translation;
|
||
|
|
||
|
namespace Ryujinx.Graphics.Shader.StructuredIr
|
||
|
{
|
||
|
readonly struct MemoryDefinition
|
||
|
{
|
||
|
public string Name { get; }
|
||
|
public AggregateType Type { get; }
|
||
|
public int ArrayLength { get; }
|
||
|
|
||
|
public MemoryDefinition(string name, AggregateType type, int arrayLength = 1)
|
||
|
{
|
||
|
Name = name;
|
||
|
Type = type;
|
||
|
ArrayLength = arrayLength;
|
||
|
}
|
||
|
}
|
||
|
}
|