mirror of
https://github.com/GreemDev/Ryujinx
synced 2024-11-22 09:53:35 +01: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; }
|
|
}
|
|
} |