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

90 lines
2.2 KiB
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-17 04:59:28 +01:00
void EmitConvertS16F16(EmitContext&) {
2021-02-08 06:54:35 +01:00
throw NotImplementedException("SPIR-V Instruction");
}
2021-02-17 04:59:28 +01:00
void EmitConvertS16F32(EmitContext&) {
2021-02-08 06:54:35 +01:00
throw NotImplementedException("SPIR-V Instruction");
}
2021-02-17 04:59:28 +01:00
void EmitConvertS16F64(EmitContext&) {
2021-02-08 06:54:35 +01:00
throw NotImplementedException("SPIR-V Instruction");
}
2021-02-17 04:59:28 +01:00
void EmitConvertS32F16(EmitContext&) {
2021-02-08 06:54:35 +01:00
throw NotImplementedException("SPIR-V Instruction");
}
2021-02-17 04:59:28 +01:00
void EmitConvertS32F32(EmitContext&) {
2021-02-08 06:54:35 +01:00
throw NotImplementedException("SPIR-V Instruction");
}
2021-02-17 04:59:28 +01:00
void EmitConvertS32F64(EmitContext&) {
2021-02-08 06:54:35 +01:00
throw NotImplementedException("SPIR-V Instruction");
}
2021-02-17 04:59:28 +01:00
void EmitConvertS64F16(EmitContext&) {
2021-02-08 06:54:35 +01:00
throw NotImplementedException("SPIR-V Instruction");
}
2021-02-17 04:59:28 +01:00
void EmitConvertS64F32(EmitContext&) {
2021-02-08 06:54:35 +01:00
throw NotImplementedException("SPIR-V Instruction");
}
2021-02-17 04:59:28 +01:00
void EmitConvertS64F64(EmitContext&) {
2021-02-08 06:54:35 +01:00
throw NotImplementedException("SPIR-V Instruction");
}
2021-02-17 04:59:28 +01:00
void EmitConvertU16F16(EmitContext&) {
2021-02-08 06:54:35 +01:00
throw NotImplementedException("SPIR-V Instruction");
}
2021-02-17 04:59:28 +01:00
void EmitConvertU16F32(EmitContext&) {
2021-02-08 06:54:35 +01:00
throw NotImplementedException("SPIR-V Instruction");
}
2021-02-17 04:59:28 +01:00
void EmitConvertU16F64(EmitContext&) {
2021-02-08 06:54:35 +01:00
throw NotImplementedException("SPIR-V Instruction");
}
2021-02-17 04:59:28 +01:00
void EmitConvertU32F16(EmitContext&) {
2021-02-08 06:54:35 +01:00
throw NotImplementedException("SPIR-V Instruction");
}
2021-02-17 04:59:28 +01:00
void EmitConvertU32F32(EmitContext&) {
2021-02-08 06:54:35 +01:00
throw NotImplementedException("SPIR-V Instruction");
}
2021-02-17 04:59:28 +01:00
void EmitConvertU32F64(EmitContext&) {
2021-02-08 06:54:35 +01:00
throw NotImplementedException("SPIR-V Instruction");
}
2021-02-17 04:59:28 +01:00
void EmitConvertU64F16(EmitContext&) {
2021-02-08 06:54:35 +01:00
throw NotImplementedException("SPIR-V Instruction");
}
2021-02-17 04:59:28 +01:00
void EmitConvertU64F32(EmitContext&) {
2021-02-08 06:54:35 +01:00
throw NotImplementedException("SPIR-V Instruction");
}
2021-02-17 04:59:28 +01:00
void EmitConvertU64F64(EmitContext&) {
2021-02-08 06:54:35 +01:00
throw NotImplementedException("SPIR-V Instruction");
}
2021-02-17 04:59:28 +01:00
void EmitConvertU64U32(EmitContext&) {
2021-02-08 06:54:35 +01:00
throw NotImplementedException("SPIR-V Instruction");
}
2021-02-17 04:59:28 +01:00
void EmitConvertU32U64(EmitContext&) {
2021-02-08 06:54:35 +01:00
throw NotImplementedException("SPIR-V Instruction");
}
} // namespace Shader::Backend::SPIRV