2021-04-18 23:03:38 +00:00
|
|
|
// Copyright 2021 yuzu Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
#include <ranges>
|
|
|
|
|
|
|
|
#include "common/bit_cast.h"
|
|
|
|
#include "common/bit_util.h"
|
|
|
|
#include "shader_recompiler/exception.h"
|
|
|
|
#include "shader_recompiler/frontend/ir/ir_emitter.h"
|
|
|
|
#include "shader_recompiler/ir_opt/passes.h"
|
|
|
|
|
|
|
|
namespace Shader::Optimization {
|
|
|
|
|
2021-05-14 03:40:54 +00:00
|
|
|
void VertexATransformPass(IR::Program&) {
|
|
|
|
throw NotImplementedException("VertexA pass");
|
2021-04-18 23:03:38 +00:00
|
|
|
}
|
|
|
|
|
2021-05-14 03:40:54 +00:00
|
|
|
void VertexBTransformPass(IR::Program&) {
|
|
|
|
throw NotImplementedException("VertexA pass");
|
2021-04-18 23:03:38 +00:00
|
|
|
}
|
|
|
|
|
2021-05-14 03:40:54 +00:00
|
|
|
void DualVertexJoinPass(IR::Program&) {
|
|
|
|
throw NotImplementedException("VertexA pass");
|
2021-04-18 23:03:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Shader::Optimization
|