summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/profile.h
diff options
context:
space:
mode:
authorGravatar ReinUsesLisp2021-02-21 23:42:38 -0300
committerGravatar ameerj2021-07-22 21:51:22 -0400
commit274897dfd59b4d08029ab7e93be4f84654abcdc8 (patch)
tree083336a4d665476a87b888368878a311a7edab2a /src/shader_recompiler/profile.h
parentshader: Rename, implement FADD.SAT and P2R (imm) (diff)
downloadyuzu-274897dfd59b4d08029ab7e93be4f84654abcdc8.tar.gz
yuzu-274897dfd59b4d08029ab7e93be4f84654abcdc8.tar.xz
yuzu-274897dfd59b4d08029ab7e93be4f84654abcdc8.zip
spirv: Fixes and Intel specific workarounds
Diffstat (limited to 'src/shader_recompiler/profile.h')
-rw-r--r--src/shader_recompiler/profile.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/shader_recompiler/profile.h b/src/shader_recompiler/profile.h
index 9881bebab..917fc1251 100644
--- a/src/shader_recompiler/profile.h
+++ b/src/shader_recompiler/profile.h
@@ -15,6 +15,9 @@ struct Profile {
15 bool support_fp32_denorm_preserve{}; 15 bool support_fp32_denorm_preserve{};
16 bool support_fp16_denorm_flush{}; 16 bool support_fp16_denorm_flush{};
17 bool support_fp32_denorm_flush{}; 17 bool support_fp32_denorm_flush{};
18
19 // FClamp is broken and OpFMax + OpFMin should be used instead
20 bool has_broken_spirv_clamp{};
18}; 21};
19 22
20} // namespace Shader 23} // namespace Shader