aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Shader/Decoders/AtomicOp.cs
blob: 065a57c447707bb263ba6a8ea074eba0af7be4e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
namespace Ryujinx.Graphics.Shader.Decoders
{
    enum AtomicOp
    {
        Add                = 0,
        Minimum            = 1,
        Maximum            = 2,
        Increment          = 3,
        Decrement          = 4,
        BitwiseAnd         = 5,
        BitwiseOr          = 6,
        BitwiseExclusiveOr = 7,
        Swap               = 8
    }
}