NvHostChannelSubmit.cs 337 B

12345678910111213
  1. using System.Runtime.InteropServices;
  2. namespace Ryujinx.HLE.HOS.Services.Nv.NvHostChannel
  3. {
  4. [StructLayout(LayoutKind.Sequential, Size = 8, Pack = 4)]
  5. struct NvHostChannelSubmit
  6. {
  7. public int CmdBufsCount;
  8. public int RelocsCount;
  9. public int SyncptIncrsCount;
  10. public int WaitchecksCount;
  11. }
  12. }