diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2021-07-18 23:06:12 +0200 |
---|---|---|
committer | Fernando Sahmkow <fsahmkow27@gmail.com> | 2021-11-16 22:11:27 +0100 |
commit | 360e897ccd53bf863cea1ad6184d35e9b6ffbf40 (patch) | |
tree | ff509e8b85687489143b0c6cce7ddd8003d4558c /src/shader_recompiler/shader_info.h | |
parent | 37ef9c913028e234509bcf70bad049b0210e4592 (diff) |
ShaderDecompiler: Add initial support for rescaling.
Diffstat (limited to 'src/shader_recompiler/shader_info.h')
-rw-r--r-- | src/shader_recompiler/shader_info.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/shader_recompiler/shader_info.h b/src/shader_recompiler/shader_info.h index 4ef4dbd406..e7981a08cd 100644 --- a/src/shader_recompiler/shader_info.h +++ b/src/shader_recompiler/shader_info.h @@ -172,6 +172,7 @@ struct Info { bool uses_global_memory{}; bool uses_atomic_image_u32{}; bool uses_shadow_lod{}; + bool requires_rescaling_uniform{}; IR::Type used_constant_buffer_types{}; IR::Type used_storage_buffer_types{}; |