Files
Ryujinx/src/Ryujinx.Graphics.Shader/CodeGen/Msl/DefaultNames.cs
2024-09-28 19:03:01 -04:00

16 lines
434 B
C#

namespace Ryujinx.Graphics.Shader.CodeGen.Msl
{
static class DefaultNames
{
public const string LocalNamePrefix = "temp";
public const string PerPatchAttributePrefix = "patchAttr";
public const string IAttributePrefix = "inAttr";
public const string OAttributePrefix = "outAttr";
public const string ArgumentNamePrefix = "a";
public const string UndefinedName = "0";
}
}