Ryujinx/Ryujinx.Graphics.Gpu/State/SemaphoreOperation.cs
gdkchan 44d7fcff39
Implement FIFO semaphore (#1286)
* Implement FIFO semaphore

* New enum for FIFO semaphore operation
2020-05-29 10:51:10 +02:00

12 lines
212 B
C#

namespace Ryujinx.Graphics.Gpu.State
{
/// <summary>
/// GPU semaphore operation.
/// </summary>
enum SemaphoreOperation
{
Release = 0,
Acquire = 1,
Counter = 2
}
}