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

        public const string SamplerNamePrefix = "tex";

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

        public const string UniformNamePrefix = "c";
        public const string UniformNameSuffix = "data";

        public const string UndefinedName = "undef";
    }
}