PerformanceOutStatus.cs 564 B

123456789101112131415161718192021
  1. using System.Runtime.InteropServices;
  2. namespace Ryujinx.Audio.Renderer.Parameter.Performance
  3. {
  4. /// <summary>
  5. /// Output information for performance monitoring.
  6. /// </summary>
  7. [StructLayout(LayoutKind.Sequential, Pack = 1)]
  8. public struct PerformanceOutStatus
  9. {
  10. /// <summary>
  11. /// Indicates the total size output to the performance buffer.
  12. /// </summary>
  13. public uint HistorySize;
  14. /// <summary>
  15. /// Reserved/unused.
  16. /// </summary>
  17. private unsafe fixed uint _reserved[3];
  18. }
  19. }