mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-07 22:08:33 +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; }
|
|
}
|
|
} |