aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Core/OsHle/Services/Nv/NvHostCtrl/NvHostCtrlUserCtx.cs
blob: be71b2252a311969a3c0a4a93003a39b54be85d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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];
        }
    }
}