suyu/src/shader_recompiler/backend/spirv/emit_spirv_logical.cpp

26 lines
643 B
C++
Raw Normal View History

2021-02-08 06:54:35 +01:00
// Copyright 2021 yuzu Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include "shader_recompiler/backend/spirv/emit_spirv.h"
namespace Shader::Backend::SPIRV {
2021-02-19 22:10:18 +01:00
void EmitLogicalOr(EmitContext&) {
2021-02-08 06:54:35 +01:00
throw NotImplementedException("SPIR-V Instruction");
}
2021-02-19 22:10:18 +01:00
void EmitLogicalAnd(EmitContext&) {
2021-02-08 06:54:35 +01:00
throw NotImplementedException("SPIR-V Instruction");
}
2021-02-19 22:10:18 +01:00
void EmitLogicalXor(EmitContext&) {
2021-02-08 06:54:35 +01:00
throw NotImplementedException("SPIR-V Instruction");
}
2021-02-19 22:10:18 +01:00
void EmitLogicalNot(EmitContext&) {
2021-02-08 06:54:35 +01:00
throw NotImplementedException("SPIR-V Instruction");
}
} // namespace Shader::Backend::SPIRV