aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/Shader/Decoders/IOpCodeAlu.cs
blob: d840d49d1bd241a8e93811885a54f8d1a6395a15 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
namespace Ryujinx.Graphics.Shader.Decoders
{
    interface IOpCodeAlu : IOpCodeRd, IOpCodeRa
    {
        Register Predicate39 { get; }

        bool InvertP     { get; }
        bool Extended    { get; }
        bool SetCondCode { get; }
        bool Saturate    { get; }
    }
}