aboutsummaryrefslogtreecommitdiff
path: root/src/shader_recompiler/frontend/maxwell/translate/impl/common_funcs.h
diff options
context:
space:
mode:
authorameerj <52414509+ameerj@users.noreply.github.com>2021-03-03 00:41:05 -0500
committerameerj <52414509+ameerj@users.noreply.github.com>2021-07-22 21:51:23 -0400
commit980cafdc27444484a2a2794be5de92ea18de6e27 (patch)
tree0b95eaadb03bec8c0ccb8ed31f3d8d42e7689a9c /src/shader_recompiler/frontend/maxwell/translate/impl/common_funcs.h
parent382cba94ed52f4fae7db437a3056563ba2110e8b (diff)
shader: Implement LOP and LOP3
Diffstat (limited to 'src/shader_recompiler/frontend/maxwell/translate/impl/common_funcs.h')
-rw-r--r--src/shader_recompiler/frontend/maxwell/translate/impl/common_funcs.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/shader_recompiler/frontend/maxwell/translate/impl/common_funcs.h b/src/shader_recompiler/frontend/maxwell/translate/impl/common_funcs.h
index 61e13fa18..c9ae5c500 100644
--- a/src/shader_recompiler/frontend/maxwell/translate/impl/common_funcs.h
+++ b/src/shader_recompiler/frontend/maxwell/translate/impl/common_funcs.h
@@ -13,4 +13,6 @@ namespace Shader::Maxwell {
[[nodiscard]] IR::U1 PredicateCombine(IR::IREmitter& ir, const IR::U1& predicate_1,
const IR::U1& predicate_2, BooleanOp bop);
+
+[[nodiscard]] IR::U1 PredicateOperation(IR::IREmitter& ir, const IR::U32& result, PredicateOp op);
} // namespace Shader::Maxwell