NvHostCtrlUserCtx.cs 444 B

12345678910111213141516171819
  1. namespace Ryujinx.HLE.HOS.Services.Nv.NvHostCtrl
  2. {
  3. class NvHostCtrlUserCtx
  4. {
  5. public const int LocksCount = 16;
  6. public const int EventsCount = 64;
  7. public NvHostSyncpt Syncpt { get; private set; }
  8. public NvHostEvent[] Events { get; private set; }
  9. public NvHostCtrlUserCtx()
  10. {
  11. Syncpt = new NvHostSyncpt();
  12. Events = new NvHostEvent[EventsCount];
  13. }
  14. }
  15. }