aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/Shader/Decoders/IOpCodeFArith.cs
blob: d68ccf593bfa398b95737133c1a3c89e7241406e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
namespace Ryujinx.Graphics.Shader.Decoders
{
    interface IOpCodeFArith : IOpCodeAlu
    {
        RoundingMode RoundingMode { get; }

        FmulScale Scale { get; }

        bool FlushToZero { get; }
        bool AbsoluteA   { get; }
    }
}