aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.Shader/CodeGen/Glsl/HelperFunctions/HelperFunctionNames.cs
blob: 21c435475feca75d47ca380517914a0ae448af6d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace Ryujinx.Graphics.Shader.CodeGen.Glsl
{
    static class HelperFunctionNames
    {
        public static string MultiplyHighS32 = "Helper_MultiplyHighS32";
        public static string MultiplyHighU32 = "Helper_MultiplyHighU32";

        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";
    }
}