mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 08:48:42 +00:00
13 lines
308 B
C#
13 lines
308 B
C#
|
namespace Ryujinx.Graphics.Shader.Decoders
|
||
|
{
|
||
|
interface IOpCodeHfma : IOpCode
|
||
|
{
|
||
|
bool NegateB { get; }
|
||
|
bool NegateC { get; }
|
||
|
bool Saturate { get; }
|
||
|
|
||
|
FPHalfSwizzle SwizzleA { get; }
|
||
|
FPHalfSwizzle SwizzleB { get; }
|
||
|
FPHalfSwizzle SwizzleC { get; }
|
||
|
}
|
||
|
}
|