mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-07 23:38:39 +00:00
17 lines
484 B
C#
17 lines
484 B
C#
|
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";
|
||
|
}
|
||
|
}
|