aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/DefaultNames.cs
blob: 54bf9aeb23a524b8091fced1fc91f26856719c3e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
namespace Ryujinx.Graphics.Shader.CodeGen.Glsl
{
    static class DefaultNames
    {
        public const string LocalNamePrefix = "temp";

        public const string PerPatchAttributePrefix = "patch_attr_";
        public const string IAttributePrefix = "in_attr";
        public const string OAttributePrefix = "out_attr";

        public const string ArgumentNamePrefix = "a";

        public const string UndefinedName = "undef";
    }
}