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

20 lines
675 B
C++
Raw Normal View History

2021-01-09 01:30:07 -05:00
// Copyright 2021 yuzu Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
#include "shader_recompiler/environment.h"
#include "shader_recompiler/frontend/ir/basic_block.h"
2021-02-05 21:11:23 -05:00
#include "shader_recompiler/frontend/ir/microinstruction.h"
2021-01-09 01:30:07 -05:00
#include "shader_recompiler/frontend/maxwell/control_flow.h"
2021-02-05 21:11:23 -05:00
#include "shader_recompiler/frontend/maxwell/location.h"
#include "shader_recompiler/object_pool.h"
2021-01-09 01:30:07 -05:00
namespace Shader::Maxwell {
2021-02-05 21:11:23 -05:00
[[nodiscard]] IR::Block Translate(ObjectPool<IR::Inst>& inst_pool, Environment& env,
const Flow::Block& flow_block);
2021-01-09 01:30:07 -05:00
} // namespace Shader::Maxwell