mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-07 20:18:31 +00:00
44d7fcff39
* Implement FIFO semaphore * New enum for FIFO semaphore operation
15 lines
297 B
C#
15 lines
297 B
C#
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
|
|
}
|
|
}
|