aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/Shader/Decoders/MufuOperation.cs
blob: 88bd1f5cea493226f9327f648762fc1393bb4129 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
namespace Ryujinx.Graphics.Shader.Decoders
{
    enum MufuOperation
    {
        Cosine                  = 0,
        Sine                    = 1,
        ExponentB2              = 2,
        LogarithmB2             = 3,
        Reciprocal              = 4,
        ReciprocalSquareRoot    = 5,
        Reciprocal64H           = 6,
        ReciprocalSquareRoot64H = 7,
        SquareRoot              = 8
    }
}