blob: 0b80ac2b6b288e03a60e62ac974aeedcb54c4149 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
namespace Ryujinx.Graphics.Shader.CodeGen.Glsl
{
static class HelperFunctionNames
{
public static string MultiplyHighS32 = "Helper_MultiplyHighS32";
public static string MultiplyHighU32 = "Helper_MultiplyHighU32";
public static string SwizzleAdd = "Helper_SwizzleAdd";
}
}
|