diff options
| author | bunnei <bunneidev@gmail.com> | 2019-11-07 00:47:24 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-11-07 00:47:24 -0500 |
| commit | 344d15f61e3083a427604d5a5e21132487032ce1 (patch) | |
| tree | 5fe1cb60db1a671814da2a2167619728a7346277 /src/video_core/shader/decode/arithmetic_half.cpp | |
| parent | c414ebaa9ce33df9756828d94d752b78dcde70c1 (diff) | |
| parent | 39c66abd91c62f95361e63bacd253027e7617022 (diff) | |
Merge pull request #3070 from ReinUsesLisp/shader-warnings
shader_ir: Reduce severity of warnings
Diffstat (limited to 'src/video_core/shader/decode/arithmetic_half.cpp')
| -rw-r--r-- | src/video_core/shader/decode/arithmetic_half.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/shader/decode/arithmetic_half.cpp b/src/video_core/shader/decode/arithmetic_half.cpp index b06cbe441..ee7d9a29d 100644 --- a/src/video_core/shader/decode/arithmetic_half.cpp +++ b/src/video_core/shader/decode/arithmetic_half.cpp @@ -21,8 +21,8 @@ u32 ShaderIR::DecodeArithmeticHalf(NodeBlock& bb, u32 pc) { if (opcode->get().GetId() == OpCode::Id::HADD2_C || opcode->get().GetId() == OpCode::Id::HADD2_R) { - if (instr.alu_half.ftz != 0) { - LOG_WARNING(HW_GPU, "{} FTZ not implemented", opcode->get().GetName()); + if (instr.alu_half.ftz == 0) { + LOG_DEBUG(HW_GPU, "{} without FTZ is not implemented", opcode->get().GetName()); } } |
