diff options
| author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2020-10-28 17:05:41 -0300 | 
|---|---|---|
| committer | ReinUsesLisp <reinuseslisp@airmail.cc> | 2020-10-28 17:05:41 -0300 | 
| commit | 44b552be712a9db83a92710648cde4053adf876d (patch) | |
| tree | ff128344b1a902ae61557c8515dc2fb546720463 /src/video_core/shader | |
| parent | 725fcbb3685e99d0cb787f38930c33c2fe4b0ae7 (diff) | |
shader/arithmetic: Implement FCMP immediate + register variant
Trivially add the encoding for this.
Diffstat (limited to 'src/video_core/shader')
| -rw-r--r-- | src/video_core/shader/decode/arithmetic.cpp | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/src/video_core/shader/decode/arithmetic.cpp b/src/video_core/shader/decode/arithmetic.cpp index 4db329fa5..afef5948d 100644 --- a/src/video_core/shader/decode/arithmetic.cpp +++ b/src/video_core/shader/decode/arithmetic.cpp @@ -137,7 +137,8 @@ u32 ShaderIR::DecodeArithmetic(NodeBlock& bb, u32 pc) {          break;      }      case OpCode::Id::FCMP_RR: -    case OpCode::Id::FCMP_RC: { +    case OpCode::Id::FCMP_RC: +    case OpCode::Id::FCMP_IMMR: {          UNIMPLEMENTED_IF(instr.fcmp.ftz == 0);          Node op_c = GetRegister(instr.gpr39);          Node comp = GetPredicateComparisonFloat(instr.fcmp.cond, std::move(op_c), Immediate(0.0f)); | 
