2019-10-13 08:02:07 +02:00
|
|
|
namespace Ryujinx.Graphics.Gpu.State
|
|
|
|
{
|
2019-12-31 17:32:06 +01:00
|
|
|
/// <summary>
|
2020-05-29 10:51:10 +02:00
|
|
|
/// GPU semaphore state.
|
2019-12-31 17:32:06 +01:00
|
|
|
/// </summary>
|
2020-05-29 10:51:10 +02:00
|
|
|
struct SemaphoreState
|
2019-10-13 08:02:07 +02:00
|
|
|
{
|
2020-04-20 23:59:59 +02:00
|
|
|
#pragma warning disable CS0649
|
2019-10-13 08:02:07 +02:00
|
|
|
public GpuVa Address;
|
|
|
|
public int Payload;
|
|
|
|
public uint Control;
|
2020-04-20 23:59:59 +02:00
|
|
|
#pragma warning restore CS0649
|
2019-10-13 08:02:07 +02:00
|
|
|
}
|
|
|
|
}
|