mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 15:28:32 +00:00
13 lines
337 B
C#
13 lines
337 B
C#
|
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;
|
||
|
}
|
||
|
}
|