You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
571 B
20 lines
571 B
// Copyright 2021 yuzu Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <utility>
|
|
#include <vector>
|
|
|
|
#include "common/common_types.h"
|
|
#include "shader_recompiler/environment.h"
|
|
#include "shader_recompiler/profile.h"
|
|
#include "shader_recompiler/shader_info.h"
|
|
|
|
namespace Shader {
|
|
|
|
[[nodiscard]] std::pair<Info, std::vector<u32>> RecompileSPIRV(const Profile& profile,
|
|
Environment& env, u32 start_address);
|
|
|
|
} // namespace Shader
|