diff options
Diffstat (limited to 'src/shader_recompiler/backend/spirv/emit_spirv_logical.cpp')
| -rw-r--r-- | src/shader_recompiler/backend/spirv/emit_spirv_logical.cpp | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/shader_recompiler/backend/spirv/emit_spirv_logical.cpp b/src/shader_recompiler/backend/spirv/emit_spirv_logical.cpp new file mode 100644 index 000000000..b9a9500fc --- /dev/null +++ b/src/shader_recompiler/backend/spirv/emit_spirv_logical.cpp | |||
| @@ -0,0 +1,26 @@ | |||
| 1 | // Copyright 2021 yuzu Emulator Project | ||
| 2 | // Licensed under GPLv2 or any later version | ||
| 3 | // Refer to the license.txt file included. | ||
| 4 | |||
| 5 | #include "shader_recompiler/backend/spirv/emit_spirv.h" | ||
| 6 | #include "shader_recompiler/backend/spirv/emit_spirv_instructions.h" | ||
| 7 | |||
| 8 | namespace Shader::Backend::SPIRV { | ||
| 9 | |||
| 10 | Id EmitLogicalOr(EmitContext& ctx, Id a, Id b) { | ||
| 11 | return ctx.OpLogicalOr(ctx.U1, a, b); | ||
| 12 | } | ||
| 13 | |||
| 14 | Id EmitLogicalAnd(EmitContext& ctx, Id a, Id b) { | ||
| 15 | return ctx.OpLogicalAnd(ctx.U1, a, b); | ||
| 16 | } | ||
| 17 | |||
| 18 | Id EmitLogicalXor(EmitContext& ctx, Id a, Id b) { | ||
| 19 | return ctx.OpLogicalNotEqual(ctx.U1, a, b); | ||
| 20 | } | ||
| 21 | |||
| 22 | Id EmitLogicalNot(EmitContext& ctx, Id value) { | ||
| 23 | return ctx.OpLogicalNot(ctx.U1, value); | ||
| 24 | } | ||
| 25 | |||
| 26 | } // namespace Shader::Backend::SPIRV | ||