2021-05-22 00:56:46 +00:00
|
|
|
// Copyright 2021 yuzu Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include <string_view>
|
|
|
|
|
|
|
|
#include "shader_recompiler/backend/glsl/emit_context.h"
|
|
|
|
#include "shader_recompiler/backend/glsl/emit_glsl_instructions.h"
|
|
|
|
#include "shader_recompiler/frontend/ir/value.h"
|
|
|
|
#include "shader_recompiler/profile.h"
|
|
|
|
|
|
|
|
namespace Shader::Backend::GLSL {
|
|
|
|
void EmitSelectU1([[maybe_unused]] EmitContext& ctx, [[maybe_unused]] std::string_view cond,
|
|
|
|
[[maybe_unused]] std::string_view true_value,
|
|
|
|
[[maybe_unused]] std::string_view false_value) {
|
|
|
|
throw NotImplementedException("GLSL Instruction");
|
|
|
|
}
|
|
|
|
|
|
|
|
void EmitSelectU8([[maybe_unused]] EmitContext& ctx, [[maybe_unused]] std::string_view cond,
|
|
|
|
[[maybe_unused]] std::string_view true_value,
|
|
|
|
[[maybe_unused]] std::string_view false_value) {
|
|
|
|
throw NotImplementedException("GLSL Instruction");
|
|
|
|
}
|
|
|
|
|
|
|
|
void EmitSelectU16([[maybe_unused]] EmitContext& ctx, [[maybe_unused]] std::string_view cond,
|
|
|
|
[[maybe_unused]] std::string_view true_value,
|
|
|
|
[[maybe_unused]] std::string_view false_value) {
|
|
|
|
throw NotImplementedException("GLSL Instruction");
|
|
|
|
}
|
|
|
|
|
2021-05-22 01:31:41 +00:00
|
|
|
void EmitSelectU32([[maybe_unused]] EmitContext& ctx, IR::Inst& inst,
|
|
|
|
[[maybe_unused]] std::string_view cond,
|
2021-05-22 00:56:46 +00:00
|
|
|
[[maybe_unused]] std::string_view true_value,
|
|
|
|
[[maybe_unused]] std::string_view false_value) {
|
2021-05-22 01:31:41 +00:00
|
|
|
ctx.AddU32("{}={}?{}:{};", inst, cond, true_value, false_value);
|
2021-05-22 00:56:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void EmitSelectU64([[maybe_unused]] EmitContext& ctx, [[maybe_unused]] std::string_view cond,
|
|
|
|
[[maybe_unused]] std::string_view true_value,
|
|
|
|
[[maybe_unused]] std::string_view false_value) {
|
|
|
|
throw NotImplementedException("GLSL Instruction");
|
|
|
|
}
|
|
|
|
|
|
|
|
void EmitSelectF16([[maybe_unused]] EmitContext& ctx, [[maybe_unused]] std::string_view cond,
|
|
|
|
[[maybe_unused]] std::string_view true_value,
|
|
|
|
[[maybe_unused]] std::string_view false_value) {
|
|
|
|
throw NotImplementedException("GLSL Instruction");
|
|
|
|
}
|
|
|
|
|
|
|
|
void EmitSelectF32([[maybe_unused]] EmitContext& ctx, [[maybe_unused]] std::string_view cond,
|
|
|
|
[[maybe_unused]] std::string_view true_value,
|
|
|
|
[[maybe_unused]] std::string_view false_value) {
|
|
|
|
throw NotImplementedException("GLSL Instruction");
|
|
|
|
}
|
|
|
|
|
|
|
|
void EmitSelectF64([[maybe_unused]] EmitContext& ctx, [[maybe_unused]] std::string_view cond,
|
|
|
|
[[maybe_unused]] std::string_view true_value,
|
|
|
|
[[maybe_unused]] std::string_view false_value) {
|
|
|
|
throw NotImplementedException("GLSL Instruction");
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Shader::Backend::GLSL
|