ReportState.cs 237 B

123456789101112
  1. namespace Ryujinx.Graphics.Gpu.State
  2. {
  3. /// <summary>
  4. /// GPU counter report state.
  5. /// </summary>
  6. struct ReportState
  7. {
  8. public GpuVa Address;
  9. public int Payload;
  10. public uint Control;
  11. }
  12. }