aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/HelperFunctionNames.cs
blob: f1540fbfb1ddcfa6266ebe70f10a17d034b7a660 (plain)
1
2
3
4
5
6
7
8
9
10
11
namespace Ryujinx.Graphics.Shader.CodeGen.Glsl
{
    static class HelperFunctionNames
    {
        public static string Shuffle     = "Helper_Shuffle";
        public static string ShuffleDown = "Helper_ShuffleDown";
        public static string ShuffleUp   = "Helper_ShuffleUp";
        public static string ShuffleXor  = "Helper_ShuffleXor";
        public static string SwizzleAdd  = "Helper_SwizzleAdd";
    }
}