summaryrefslogtreecommitdiffstats
path: root/src/video_core/shader/decode/arithmetic.cpp
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2019-11-04 06:24:58 +0100
committerReinUsesLisp <reinuseslisp@airmail.cc>2019-11-07 05:43:38 +0100
commit39c66abd91c62f95361e63bacd253027e7617022 (patch)
treeace064fa6726873e6b473068a0f062d0e71eb4e3 /src/video_core/shader/decode/arithmetic.cpp
parentshader/arithmetic: Reduce RRO stub severity (diff)
downloadyuzu-39c66abd91c62f95361e63bacd253027e7617022.tar
yuzu-39c66abd91c62f95361e63bacd253027e7617022.tar.gz
yuzu-39c66abd91c62f95361e63bacd253027e7617022.tar.bz2
yuzu-39c66abd91c62f95361e63bacd253027e7617022.tar.lz
yuzu-39c66abd91c62f95361e63bacd253027e7617022.tar.xz
yuzu-39c66abd91c62f95361e63bacd253027e7617022.tar.zst
yuzu-39c66abd91c62f95361e63bacd253027e7617022.zip
Diffstat (limited to 'src/video_core/shader/decode/arithmetic.cpp')
-rw-r--r--src/video_core/shader/decode/arithmetic.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/video_core/shader/decode/arithmetic.cpp b/src/video_core/shader/decode/arithmetic.cpp
index bff3d5459..fcedd2af6 100644
--- a/src/video_core/shader/decode/arithmetic.cpp
+++ b/src/video_core/shader/decode/arithmetic.cpp
@@ -43,12 +43,12 @@ u32 ShaderIR::DecodeArithmetic(NodeBlock& bb, u32 pc) {
case OpCode::Id::FMUL_IMM: {
// FMUL does not have 'abs' bits and only the second operand has a 'neg' bit.
if (instr.fmul.tab5cb8_2 != 0) {
- LOG_WARNING(HW_GPU, "FMUL tab5cb8_2({}) is not implemented",
- instr.fmul.tab5cb8_2.Value());
+ LOG_DEBUG(HW_GPU, "FMUL tab5cb8_2({}) is not implemented",
+ instr.fmul.tab5cb8_2.Value());
}
if (instr.fmul.tab5c68_0 != 1) {
- LOG_WARNING(HW_GPU, "FMUL tab5cb8_0({}) is not implemented",
- instr.fmul.tab5c68_0.Value());
+ LOG_DEBUG(HW_GPU, "FMUL tab5cb8_0({}) is not implemented",
+ instr.fmul.tab5c68_0.Value());
}
op_b = GetOperandAbsNegFloat(op_b, false, instr.fmul.negate_b);