summaryrefslogtreecommitdiffstats
path: root/src/shader_recompiler/profile.h
diff options
context:
space:
mode:
authorKelebek1 <eeeedddccc@hotmail.co.uk>2023-10-14 23:20:28 +0200
committerKelebek1 <eeeedddccc@hotmail.co.uk>2023-10-19 20:54:31 +0200
commite02ee8e59d099692678bed09332b7d8aad1ce271 (patch)
tree8ea0de01f31cee80075441fab4c746e0615a7ff7 /src/shader_recompiler/profile.h
parentMerge pull request #11810 from liamwhite/clang-17 (diff)
downloadyuzu-e02ee8e59d099692678bed09332b7d8aad1ce271.tar
yuzu-e02ee8e59d099692678bed09332b7d8aad1ce271.tar.gz
yuzu-e02ee8e59d099692678bed09332b7d8aad1ce271.tar.bz2
yuzu-e02ee8e59d099692678bed09332b7d8aad1ce271.tar.lz
yuzu-e02ee8e59d099692678bed09332b7d8aad1ce271.tar.xz
yuzu-e02ee8e59d099692678bed09332b7d8aad1ce271.tar.zst
yuzu-e02ee8e59d099692678bed09332b7d8aad1ce271.zip
Diffstat (limited to 'src/shader_recompiler/profile.h')
-rw-r--r--src/shader_recompiler/profile.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/shader_recompiler/profile.h b/src/shader_recompiler/profile.h
index 9ca97f6a4..38d820db2 100644
--- a/src/shader_recompiler/profile.h
+++ b/src/shader_recompiler/profile.h
@@ -9,7 +9,6 @@ namespace Shader {
struct Profile {
u32 supported_spirv{0x00010000};
-
bool unified_descriptor_binding{};
bool support_descriptor_aliasing{};
bool support_int8{};
@@ -82,6 +81,9 @@ struct Profile {
bool has_broken_spirv_subgroup_mask_vector_extract_dynamic{};
u32 gl_max_compute_smem_size{};
+
+ /// Maxwell and earlier nVidia architectures have broken robust support
+ bool has_broken_robust{};
};
} // namespace Shader