diff options
author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2021-02-21 23:42:38 -0300 |
---|---|---|
committer | ameerj <52414509+ameerj@users.noreply.github.com> | 2021-07-22 21:51:22 -0400 |
commit | 274897dfd59b4d08029ab7e93be4f84654abcdc8 (patch) | |
tree | 083336a4d665476a87b888368878a311a7edab2a /src/shader_recompiler/profile.h | |
parent | 704c6f353f68745168902c6c66c04bb730bd30e6 (diff) |
spirv: Fixes and Intel specific workarounds
Diffstat (limited to 'src/shader_recompiler/profile.h')
-rw-r--r-- | src/shader_recompiler/profile.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/shader_recompiler/profile.h b/src/shader_recompiler/profile.h index 9881bebab0..917fc12511 100644 --- a/src/shader_recompiler/profile.h +++ b/src/shader_recompiler/profile.h @@ -15,6 +15,9 @@ struct Profile { bool support_fp32_denorm_preserve{}; bool support_fp16_denorm_flush{}; bool support_fp32_denorm_flush{}; + + // FClamp is broken and OpFMax + OpFMin should be used instead + bool has_broken_spirv_clamp{}; }; } // namespace Shader |