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/profile.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 'src/shader_recompiler/profile.h')
| -rw-r--r-- | src/shader_recompiler/profile.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/shader_recompiler/profile.h b/src/shader_recompiler/profile.h index c96d783b7..9881bebab 100644 --- a/src/shader_recompiler/profile.h +++ b/src/shader_recompiler/profile.h | |||
| @@ -7,7 +7,14 @@ | |||
| 7 | namespace Shader { | 7 | namespace Shader { |
| 8 | 8 | ||
| 9 | struct Profile { | 9 | struct Profile { |
| 10 | bool unified_descriptor_binding; | 10 | bool unified_descriptor_binding{}; |
| 11 | bool support_float_controls{}; | ||
| 12 | bool support_separate_denorm_behavior{}; | ||
| 13 | bool support_separate_rounding_mode{}; | ||
| 14 | bool support_fp16_denorm_preserve{}; | ||
| 15 | bool support_fp32_denorm_preserve{}; | ||
| 16 | bool support_fp16_denorm_flush{}; | ||
| 17 | bool support_fp32_denorm_flush{}; | ||
| 11 | }; | 18 | }; |
| 12 | 19 | ||
| 13 | } // namespace Shader | 20 | } // namespace Shader |