diff options
| author | 2021-04-19 01:03:38 +0200 | |
|---|---|---|
| committer | 2021-07-22 21:51:29 -0400 | |
| commit | b541f5e5e333a8ec8c3569e02d67e59ad14217c2 (patch) | |
| tree | 5b19bdd92d74ce8e32be75cfa2c27a4612a663de /src/shader_recompiler/frontend/maxwell/program.h | |
| parent | shader: Implement delegation of Exit to dispatcher on CFG (diff) | |
| download | yuzu-b541f5e5e333a8ec8c3569e02d67e59ad14217c2.tar.gz yuzu-b541f5e5e333a8ec8c3569e02d67e59ad14217c2.tar.xz yuzu-b541f5e5e333a8ec8c3569e02d67e59ad14217c2.zip | |
shader: Implement VertexA stage
Diffstat (limited to 'src/shader_recompiler/frontend/maxwell/program.h')
| -rw-r--r-- | src/shader_recompiler/frontend/maxwell/program.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/shader_recompiler/frontend/maxwell/program.h b/src/shader_recompiler/frontend/maxwell/program.h index 542621a1d..6e5d5ddd0 100644 --- a/src/shader_recompiler/frontend/maxwell/program.h +++ b/src/shader_recompiler/frontend/maxwell/program.h | |||
| @@ -21,4 +21,6 @@ namespace Shader::Maxwell { | |||
| 21 | ObjectPool<IR::Block>& block_pool, Environment& env, | 21 | ObjectPool<IR::Block>& block_pool, Environment& env, |
| 22 | Flow::CFG& cfg); | 22 | Flow::CFG& cfg); |
| 23 | 23 | ||
| 24 | [[nodiscard]] IR::Program MergeDualVertexPrograms(IR::Program& vertex_a, IR::Program& vertex_b, | ||
| 25 | Environment& env_vertex_b); | ||
| 24 | } // namespace Shader::Maxwell | 26 | } // namespace Shader::Maxwell |