mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-25 08:47:42 +02:00
13 lines
No EOL
308 B
C#
13 lines
No EOL
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; }
|
|
}
|
|
} |