mirror of
https://gitlab.com/suyu-emu/suyu.git
synced 2024-03-15 23:15:44 +00:00
99ceb03a1c
This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
26 lines
901 B
C++
26 lines
901 B
C++
// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include "shader_recompiler/backend/glsl/emit_glsl_instructions.h"
|
|
#include "shader_recompiler/backend/glsl/glsl_emit_context.h"
|
|
#include "shader_recompiler/frontend/ir/value.h"
|
|
|
|
namespace Shader::Backend::GLSL {
|
|
|
|
void EmitLogicalOr(EmitContext& ctx, IR::Inst& inst, std::string_view a, std::string_view b) {
|
|
ctx.AddU1("{}={}||{};", inst, a, b);
|
|
}
|
|
|
|
void EmitLogicalAnd(EmitContext& ctx, IR::Inst& inst, std::string_view a, std::string_view b) {
|
|
ctx.AddU1("{}={}&&{};", inst, a, b);
|
|
}
|
|
|
|
void EmitLogicalXor(EmitContext& ctx, IR::Inst& inst, std::string_view a, std::string_view b) {
|
|
ctx.AddU1("{}={}^^{};", inst, a, b);
|
|
}
|
|
|
|
void EmitLogicalNot(EmitContext& ctx, IR::Inst& inst, std::string_view value) {
|
|
ctx.AddU1("{}=!{};", inst, value);
|
|
}
|
|
} // namespace Shader::Backend::GLSL
|