InstInfo.cs 413 B

123456789101112131415161718
  1. namespace Ryujinx.Graphics.Shader.CodeGen.Glsl.Instructions
  2. {
  3. readonly struct InstInfo
  4. {
  5. public InstType Type { get; }
  6. public string OpName { get; }
  7. public int Precedence { get; }
  8. public InstInfo(InstType type, string opName, int precedence)
  9. {
  10. Type = type;
  11. OpName = opName;
  12. Precedence = precedence;
  13. }
  14. }
  15. }