1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2024-11-10 16:31:42 +00:00
Ryujinx/Ryujinx.Graphics.Shader/Decoders/IOpCodeAlu.cs
2020-01-09 02:13:00 +01:00

12 lines
No EOL
281 B
C#

namespace Ryujinx.Graphics.Shader.Decoders
{
interface IOpCodeAlu : IOpCodeRd, IOpCodeRa
{
Register Predicate39 { get; }
bool InvertP { get; }
bool Extended { get; }
bool SetCondCode { get; }
bool Saturate { get; }
}
}