aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.Host1x/ThiRegisters.cs
blob: bb7534d8a6a2c59f3e2d82799d34ddb50d611ac8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using Ryujinx.Common.Memory;

namespace Ryujinx.Graphics.Host1x
{
    struct ThiRegisters
    {
#pragma warning disable CS0649 // Field is never assigned to
        public uint IncrSyncpt;
        public uint Reserved4;
        public uint IncrSyncptErr;
        public uint CtxswIncrSyncpt;
        public Array4<uint> Reserved10;
        public uint Ctxsw;
        public uint Reserved24;
        public uint ContSyncptEof;
        public Array5<uint> Reserved2C;
        public uint Method0;
        public uint Method1;
        public Array12<uint> Reserved48;
        public uint IntStatus;
        public uint IntMask;
#pragma warning restore CS0649
    }
}