2019-11-08 21:29:41 +01:00
|
|
|
namespace Ryujinx.Graphics.Shader.Decoders
|
|
|
|
{
|
|
|
|
enum AtomicOp
|
|
|
|
{
|
|
|
|
Add = 0,
|
|
|
|
Minimum = 1,
|
|
|
|
Maximum = 2,
|
|
|
|
Increment = 3,
|
|
|
|
Decrement = 4,
|
|
|
|
BitwiseAnd = 5,
|
|
|
|
BitwiseOr = 6,
|
|
|
|
BitwiseExclusiveOr = 7,
|
2020-11-10 01:06:46 +01:00
|
|
|
Swap = 8,
|
|
|
|
SafeAdd = 10 // Only supported by ATOM.
|
2019-11-08 21:29:41 +01:00
|
|
|
}
|
|
|
|
}
|