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