mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-21 19:15:46 +00:00
shader_recompiler: translate f64 to f32 when unsupported on host
This commit is contained in:
parent
dbe291a1b2
commit
947a4f6141
8 changed files with 198 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue