diff options
author | Liam <byteslice@airmail.cc> | 2022-03-17 13:30:21 -0400 |
---|---|---|
committer | Liam <byteslice@airmail.cc> | 2022-03-17 13:30:21 -0400 |
commit | e228a40db807c20a2484169bd0a1447a081ea1ce (patch) | |
tree | cd69df019ebf505189e5ee897ae042f9bc131119 /src/shader_recompiler/shader_info.h | |
parent | 3ac522ba41d10a254bc24bcdce8b0b2535f2b358 (diff) |
shader_recompiler: Use functions for indirect const buffer accesses
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 9f375c30e5..9cff2e42d9 100644 --- a/src/shader_recompiler/shader_info.h +++ b/src/shader_recompiler/shader_info.h @@ -173,6 +173,7 @@ struct Info { bool uses_atomic_image_u32{}; bool uses_shadow_lod{}; bool uses_rescaling_uniform{}; + bool uses_cbuf_indirect{}; IR::Type used_constant_buffer_types{}; IR::Type used_storage_buffer_types{}; |