aboutsummaryrefslogblamecommitdiff
path: root/Ryujinx.Graphics.Gpu/State/SemaphoreOperation.cs
blob: 67f3c127f62635505e351b9229fcb3534cacc137 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                    
                 
                                
                  
                           
     

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