mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-02-06 09:44:57 -05:00
10 lines
317 B
C#
10 lines
317 B
C#
namespace Ryujinx.Graphics.Shader.CodeGen.Msl
|
|
{
|
|
static class HelperFunctionNames
|
|
{
|
|
public static string FindLSB = "findLSB";
|
|
public static string FindMSBS32 = "findMSBS32";
|
|
public static string FindMSBU32 = "findMSBU32";
|
|
public static string SwizzleAdd = "swizzleAdd";
|
|
}
|
|
}
|