This repository has been archived on 2025-09-02. You can view files and clone it, but cannot push or open issues or pull requests.
Files
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
}
}