mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-27 00:00:03 -06: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; }
|
|
}
|
|
} |