diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2022-11-10 21:32:53 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-11 03:32:53 +0100 |
commit | c9bb888adf228a646ede2c99e8450207c612fe42 (patch) | |
tree | 1a098df07c3a1e8e57f47d58fe1f02ca2bf79e05 /src/shader_recompiler/host_translate_info.h | |
parent | d05b183f2118a5e2c919c35023549f30201bdd7c (diff) |
ir/texture_pass: Use host_info instead of querying Settings::values (#9176)
Diffstat (limited to 'src/shader_recompiler/host_translate_info.h')
-rw-r--r-- | src/shader_recompiler/host_translate_info.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/shader_recompiler/host_translate_info.h b/src/shader_recompiler/host_translate_info.h index 881874310a..cc1500690f 100644 --- a/src/shader_recompiler/host_translate_info.h +++ b/src/shader_recompiler/host_translate_info.h @@ -13,6 +13,7 @@ struct HostTranslateInfo { bool support_float16{}; ///< True when the device supports 16-bit floats bool support_int64{}; ///< True when the device supports 64-bit integers bool needs_demote_reorder{}; ///< True when the device needs DemoteToHelperInvocation reordered + bool support_snorm_render_buffer{}; ///< True when the device supports SNORM render buffers }; } // namespace Shader |