diff options
| author | 2021-02-20 03:30:13 -0300 | |
|---|---|---|
| committer | 2021-07-22 21:51:22 -0400 | |
| commit | e2bc05b17d91854cbb9c0ce3647141bf7d33143e (patch) | |
| tree | 96769db006b6015cd536483db98ee0697aee4992 /src/shader_recompiler/recompiler.h | |
| parent | spirv: Add lower fp16 to fp32 pass (diff) | |
| download | yuzu-e2bc05b17d91854cbb9c0ce3647141bf7d33143e.tar.gz yuzu-e2bc05b17d91854cbb9c0ce3647141bf7d33143e.tar.xz yuzu-e2bc05b17d91854cbb9c0ce3647141bf7d33143e.zip | |
shader: Add denorm flush support
Diffstat (limited to '')
| -rw-r--r-- | src/shader_recompiler/recompiler.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/shader_recompiler/recompiler.h b/src/shader_recompiler/recompiler.h index 4cb973878..2529463ae 100644 --- a/src/shader_recompiler/recompiler.h +++ b/src/shader_recompiler/recompiler.h | |||
| @@ -9,10 +9,12 @@ | |||
| 9 | 9 | ||
| 10 | #include "common/common_types.h" | 10 | #include "common/common_types.h" |
| 11 | #include "shader_recompiler/environment.h" | 11 | #include "shader_recompiler/environment.h" |
| 12 | #include "shader_recompiler/profile.h" | ||
| 12 | #include "shader_recompiler/shader_info.h" | 13 | #include "shader_recompiler/shader_info.h" |
| 13 | 14 | ||
| 14 | namespace Shader { | 15 | namespace Shader { |
| 15 | 16 | ||
| 16 | [[nodiscard]] std::pair<Info, std::vector<u32>> RecompileSPIRV(Environment& env, u32 start_address); | 17 | [[nodiscard]] std::pair<Info, std::vector<u32>> RecompileSPIRV(const Profile& profile, |
| 18 | Environment& env, u32 start_address); | ||
| 17 | 19 | ||
| 18 | } // namespace Shader | 20 | } // namespace Shader |