mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 06:18:38 +00:00
11 lines
416 B
C#
11 lines
416 B
C#
|
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";
|
||
|
}
|
||
|
}
|