2019-10-31 04:29:22 +01:00
|
|
|
namespace Ryujinx.Graphics.Shader.CodeGen.Glsl
|
|
|
|
{
|
|
|
|
static class HelperFunctionNames
|
|
|
|
{
|
2021-01-26 07:38:33 +01:00
|
|
|
public static string AtomicMaxS32 = "Helper_AtomicMaxS32";
|
|
|
|
public static string AtomicMinS32 = "Helper_AtomicMinS32";
|
|
|
|
|
2019-12-06 23:37:00 +01:00
|
|
|
public static string MultiplyHighS32 = "Helper_MultiplyHighS32";
|
|
|
|
public static string MultiplyHighU32 = "Helper_MultiplyHighU32";
|
|
|
|
|
2019-10-31 04:29:22 +01:00
|
|
|
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";
|
|
|
|
}
|
|
|
|
}
|