HelperFunctionNames.cs 492 B

12345678910111213
  1. namespace Ryujinx.Graphics.Shader.CodeGen.Glsl
  2. {
  3. static class HelperFunctionNames
  4. {
  5. public static string GetStorageBuffer = "Helper_GetStorageBuffer";
  6. public static string Shuffle = "Helper_Shuffle";
  7. public static string ShuffleDown = "Helper_ShuffleDown";
  8. public static string ShuffleUp = "Helper_ShuffleUp";
  9. public static string ShuffleXor = "Helper_ShuffleXor";
  10. public static string SwizzleAdd = "Helper_SwizzleAdd";
  11. }
  12. }