mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-05-02 07:37:42 +02:00
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
|
|
}
|
|
} |