StructuredProgramInfo.cs 566 B

12345678910111213141516171819202122
  1. using System.Collections.Generic;
  2. namespace Ryujinx.Graphics.Shader.StructuredIr
  3. {
  4. class StructuredProgramInfo
  5. {
  6. public List<StructuredFunction> Functions { get; }
  7. public HashSet<int> IAttributes { get; }
  8. public HashSet<int> OAttributes { get; }
  9. public HelperFunctionsMask HelperFunctionsMask { get; set; }
  10. public StructuredProgramInfo()
  11. {
  12. Functions = new List<StructuredFunction>();
  13. IAttributes = new HashSet<int>();
  14. OAttributes = new HashSet<int>();
  15. }
  16. }
  17. }