NvHostChannelCmdBuf.cs 286 B

123456789101112
  1. using System.Runtime.InteropServices;
  2. namespace Ryujinx.HLE.HOS.Services.Nv.NvHostChannel
  3. {
  4. [StructLayout(LayoutKind.Sequential, Size = 8, Pack = 4)]
  5. struct NvHostChannelCmdBuf
  6. {
  7. public int MemoryId;
  8. public int Offset;
  9. public int WordsCount;
  10. }
  11. }