mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-08-30 07:25:05 +00:00
15 lines
434 B
C#
15 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";
|
|
}
|
|
}
|