aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Gpu/State/SemaphoreState.cs
blob: bfc5720a40c61b832b70f2ee3aa74cad158d2ec2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace Ryujinx.Graphics.Gpu.State
{
    /// <summary>
    /// GPU semaphore state.
    /// </summary>
    struct SemaphoreState
    {
#pragma warning disable CS0649
        public GpuVa Address;
        public int   Payload;
        public uint  Control;
#pragma warning restore CS0649
    }
}