mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 21:08:42 +00:00
19 lines
447 B
C#
19 lines
447 B
C#
|
namespace Ryujinx.Core.OsHle.Services.Nv.NvHostCtrl
|
||
|
{
|
||
|
class NvHostCtrlUserCtx
|
||
|
{
|
||
|
public const int LocksCount = 16;
|
||
|
public const int EventsCount = 64;
|
||
|
|
||
|
public NvHostSyncpt Syncpt { get; private set; }
|
||
|
|
||
|
public NvHostEvent[] Events { get; private set; }
|
||
|
|
||
|
public NvHostCtrlUserCtx()
|
||
|
{
|
||
|
Syncpt = new NvHostSyncpt();
|
||
|
|
||
|
Events = new NvHostEvent[EventsCount];
|
||
|
}
|
||
|
}
|
||
|
}
|