summaryrefslogtreecommitdiff
path: root/src/video_core
diff options
context:
space:
mode:
authorGravatar ReinUsesLisp2019-10-07 14:48:58 -0300
committerGravatar ReinUsesLisp2019-10-07 14:48:58 -0300
commit632c9e4ee3417aaa89db377777377d91c69c7887 (patch)
treeb817ca5ae5c5915b3549f113548982c0b47ba590 /src/video_core
parentMerge pull request #2952 from lioncash/warning (diff)
downloadyuzu-632c9e4ee3417aaa89db377777377d91c69c7887.tar.gz
yuzu-632c9e4ee3417aaa89db377777377d91c69c7887.tar.xz
yuzu-632c9e4ee3417aaa89db377777377d91c69c7887.zip
shader/half_set_predicate: Reduce DEBUG_ASSERT to LOG_DEBUG
Diffstat (limited to 'src/video_core')
-rw-r--r--src/video_core/shader/decode/half_set_predicate.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/video_core/shader/decode/half_set_predicate.cpp b/src/video_core/shader/decode/half_set_predicate.cpp
index 840694527..26d267b4c 100644
--- a/src/video_core/shader/decode/half_set_predicate.cpp
+++ b/src/video_core/shader/decode/half_set_predicate.cpp
@@ -4,6 +4,7 @@
4 4
5#include "common/assert.h" 5#include "common/assert.h"
6#include "common/common_types.h" 6#include "common/common_types.h"
7#include "common/logging/log.h"
7#include "video_core/engines/shader_bytecode.h" 8#include "video_core/engines/shader_bytecode.h"
8#include "video_core/shader/node_helper.h" 9#include "video_core/shader/node_helper.h"
9#include "video_core/shader/shader_ir.h" 10#include "video_core/shader/shader_ir.h"
@@ -18,7 +19,7 @@ u32 ShaderIR::DecodeHalfSetPredicate(NodeBlock& bb, u32 pc) {
18 const Instruction instr = {program_code[pc]}; 19 const Instruction instr = {program_code[pc]};
19 const auto opcode = OpCode::Decode(instr); 20 const auto opcode = OpCode::Decode(instr);
20 21
21 DEBUG_ASSERT(instr.hsetp2.ftz == 0); 22 LOG_DEBUG(HW_GPU, "ftz={}", static_cast<u32>(instr.hsetp2.ftz));
22 23
23 Node op_a = UnpackHalfFloat(GetRegister(instr.gpr8), instr.hsetp2.type_a); 24 Node op_a = UnpackHalfFloat(GetRegister(instr.gpr8), instr.hsetp2.type_a);
24 op_a = GetOperandAbsNegHalf(op_a, instr.hsetp2.abs_a, instr.hsetp2.negate_a); 25 op_a = GetOperandAbsNegHalf(op_a, instr.hsetp2.abs_a, instr.hsetp2.negate_a);