blob: 9541f7018cb048d274a229647b03c7809ba5445a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
namespace Ryujinx.HLE.OsHle.Services.Nv.NvHostChannel
{
struct NvHostChannelSubmitGpfifo
{
public long Gpfifo;
public int NumEntries;
public int Flags;
public int SyncptId;
public int SyncptValue;
}
}
|