aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Shader/Decoders/VoteOp.cs
blob: 2fe937c8c44365e11c9a40e4cf2cb5ee7c44e600 (plain)
1
2
3
4
5
6
7
8
9
namespace Ryujinx.Graphics.Shader.Decoders
{
    enum VoteOp
    {
        All      = 0,
        Any      = 1,
        AllEqual = 2
    }
}