summaryrefslogtreecommitdiffstats
path: root/src/shader_recompiler/frontend/maxwell/translate/impl/common_funcs.cpp
diff options
context:
space:
mode:
authorFernandoS27 <fsahmkow27@gmail.com>2021-03-21 04:33:19 +0100
committerameerj <52414509+ameerj@users.noreply.github.com>2021-07-23 03:51:23 +0200
commit27fb97377eeb40849260ea866a90519521c6f59b (patch)
tree103da3128456dba052d4c057a41d6e9ae0e2a2ba /src/shader_recompiler/frontend/maxwell/translate/impl/common_funcs.cpp
parentshader: Implement HSETP2 (diff)
downloadyuzu-27fb97377eeb40849260ea866a90519521c6f59b.tar
yuzu-27fb97377eeb40849260ea866a90519521c6f59b.tar.gz
yuzu-27fb97377eeb40849260ea866a90519521c6f59b.tar.bz2
yuzu-27fb97377eeb40849260ea866a90519521c6f59b.tar.lz
yuzu-27fb97377eeb40849260ea866a90519521c6f59b.tar.xz
yuzu-27fb97377eeb40849260ea866a90519521c6f59b.tar.zst
yuzu-27fb97377eeb40849260ea866a90519521c6f59b.zip
Diffstat (limited to '')
-rw-r--r--src/shader_recompiler/frontend/maxwell/translate/impl/common_funcs.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shader_recompiler/frontend/maxwell/translate/impl/common_funcs.cpp b/src/shader_recompiler/frontend/maxwell/translate/impl/common_funcs.cpp
index af9a8f82c..d30e82b10 100644
--- a/src/shader_recompiler/frontend/maxwell/translate/impl/common_funcs.cpp
+++ b/src/shader_recompiler/frontend/maxwell/translate/impl/common_funcs.cpp
@@ -72,7 +72,7 @@ bool IsCompareOpOrdered(FPCompareOp op) {
}
}
-IR::U1 FloatingPointCompare(IR::IREmitter& ir, const IR::F32& operand_1, const IR::F32& operand_2,
+IR::U1 FloatingPointCompare(IR::IREmitter& ir, const IR::F16F32F64& operand_1, const IR::F16F32F64& operand_2,
FPCompareOp compare_op, IR::FpControl control) {
const bool ordered{IsCompareOpOrdered(compare_op)};
switch (compare_op) {