aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/Shader/Decoders/IOpCodeLop.cs
blob: 62c87bf435f88677e60576c2714c005c651f85bf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
namespace Ryujinx.Graphics.Shader.Decoders
{
    interface IOpCodeLop : IOpCodeAlu
    {
        LogicalOperation LogicalOp { get; }

        bool InvertA { get; }
        bool InvertB { get; }
    }
}