mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-10 22:56:39 +00:00
23 lines
No EOL
709 B
C#
23 lines
No EOL
709 B
C#
namespace Ryujinx.Graphics.Shader.CodeGen.Glsl
|
|
{
|
|
static class DefaultNames
|
|
{
|
|
public const string LocalNamePrefix = "temp";
|
|
|
|
public const string SamplerNamePrefix = "tex";
|
|
public const string ImageNamePrefix = "img";
|
|
|
|
public const string IAttributePrefix = "in_attr";
|
|
public const string OAttributePrefix = "out_attr";
|
|
|
|
public const string StorageNamePrefix = "s";
|
|
public const string StorageNameSuffix = "data";
|
|
|
|
public const string UniformNamePrefix = "c";
|
|
public const string UniformNameSuffix = "data";
|
|
|
|
public const string LocalMemoryName = "local_mem";
|
|
|
|
public const string UndefinedName = "undef";
|
|
}
|
|
} |