diff options
author | Feng Chen <vonchenplus@gmail.com> | 2021-11-19 15:32:53 +0800 |
---|---|---|
committer | vonchenplus <vonchenplus@gmail.com> | 2021-11-19 22:53:58 +0800 |
commit | 4dd85f86a89338ff84d05a3981c14f6de1be4606 (patch) | |
tree | b2a48b24bf216a325e62f5e363bc98b41de84444 /src/shader_recompiler/frontend/maxwell/translate_program.h | |
parent | 0bc46fedd617f6a42c53716680ed99d8f42bf99a (diff) |
Implement convert legacy to generic
Diffstat (limited to 'src/shader_recompiler/frontend/maxwell/translate_program.h')
-rw-r--r-- | src/shader_recompiler/frontend/maxwell/translate_program.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/shader_recompiler/frontend/maxwell/translate_program.h b/src/shader_recompiler/frontend/maxwell/translate_program.h index a84814811e..cd535f20d6 100644 --- a/src/shader_recompiler/frontend/maxwell/translate_program.h +++ b/src/shader_recompiler/frontend/maxwell/translate_program.h @@ -10,6 +10,7 @@ #include "shader_recompiler/frontend/maxwell/control_flow.h" #include "shader_recompiler/host_translate_info.h" #include "shader_recompiler/object_pool.h" +#include "shader_recompiler/runtime_info.h" namespace Shader::Maxwell { @@ -20,4 +21,7 @@ namespace Shader::Maxwell { [[nodiscard]] IR::Program MergeDualVertexPrograms(IR::Program& vertex_a, IR::Program& vertex_b, Environment& env_vertex_b); +[[nodiscard]] void ConvertLegacyToGeneric(IR::Program& program, + const Shader::RuntimeInfo& runtime_info); + } // namespace Shader::Maxwell |