blob: 6d1382a8a335d7537eaff7b496554571efa7dc3c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
namespace Ryujinx.Graphics.Shader.Decoders
{
interface IOpCodeAlu : IOpCodeRd, IOpCodeRa, IOpCodePredicate39
{
bool Extended { get; }
bool SetCondCode { get; }
bool Saturate { get; }
}
}
|