44d7fcff39
* Implement FIFO semaphore * New enum for FIFO semaphore operation
12 lines
No EOL
212 B
C#
12 lines
No EOL
212 B
C#
namespace Ryujinx.Graphics.Gpu.State
|
|
{
|
|
/// <summary>
|
|
/// GPU semaphore operation.
|
|
/// </summary>
|
|
enum SemaphoreOperation
|
|
{
|
|
Release = 0,
|
|
Acquire = 1,
|
|
Counter = 2
|
|
}
|
|
} |