summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/host_translate_info.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2023-06-12 12:46:54 -0700
committerGitHub <noreply@github.com>2023-06-12 12:46:54 -0700
commitad8f122ab106a474bee26ca2f638cfe51256eb6e (patch)
tree689bbdec246df545970abaea91d196b7a94d6bb7 /src/shader_recompiler/host_translate_info.h
parent333f792e10d244b8568d0dbb3abfea242a016698 (diff)
parent2f1e87dd83b4ce4e6ea12f985b6da49829d821e4 (diff)
Merge pull request #10693 from liamwhite/f64-to-f32
shader_recompiler: translate f64 to f32 when unsupported on host
Diffstat (limited to 'src/shader_recompiler/host_translate_info.h')
-rw-r--r--src/shader_recompiler/host_translate_info.h1
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 2aaa6c5ea..4c6322904 100644
--- a/src/shader_recompiler/host_translate_info.h
+++ b/src/shader_recompiler/host_translate_info.h
@@ -10,6 +10,7 @@ namespace Shader {
/// Misc information about the host
struct HostTranslateInfo {
+ bool support_float64{}; ///< True when the device supports 64-bit floats
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