yuzu/src/shader_recompiler/frontend/maxwell/program.h

25 lines
735 B
C++
Raw Normal View History

2021-01-09 06:30:07 +00:00
// Copyright 2021 yuzu Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
2021-02-03 00:07:00 +00:00
#include <memory>
2021-01-09 06:30:07 +00:00
#include <string>
#include <vector>
2021-02-03 00:07:00 +00:00
#include <boost/container/small_vector.hpp>
2021-01-09 06:30:07 +00:00
#include "shader_recompiler/environment.h"
2021-02-06 02:11:23 +00:00
#include "shader_recompiler/frontend/ir/program.h"
2021-01-09 06:30:07 +00:00
#include "shader_recompiler/frontend/maxwell/control_flow.h"
2021-02-06 02:11:23 +00:00
#include "shader_recompiler/object_pool.h"
2021-01-09 06:30:07 +00:00
namespace Shader::Maxwell {
2021-02-06 02:11:23 +00:00
[[nodiscard]] IR::Program TranslateProgram(ObjectPool<IR::Inst>& inst_pool,
ObjectPool<IR::Block>& block_pool, Environment& env,
Flow::CFG& cfg);
2021-01-09 06:30:07 +00:00
} // namespace Shader::Maxwell