summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/shader_info.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/shader_recompiler/shader_info.h')
-rw-r--r--src/shader_recompiler/shader_info.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/shader_recompiler/shader_info.h b/src/shader_recompiler/shader_info.h
index 3fbe99268..7bcecf554 100644
--- a/src/shader_recompiler/shader_info.h
+++ b/src/shader_recompiler/shader_info.h
@@ -128,6 +128,19 @@ struct Info {
128 bool uses_subgroup_mask{}; 128 bool uses_subgroup_mask{};
129 bool uses_fswzadd{}; 129 bool uses_fswzadd{};
130 bool uses_typeless_image_reads{}; 130 bool uses_typeless_image_reads{};
131 bool uses_shared_increment{};
132 bool uses_shared_decrement{};
133 bool uses_global_increment{};
134 bool uses_global_decrement{};
135 bool uses_atomic_f32_add{};
136 bool uses_atomic_f16x2_add{};
137 bool uses_atomic_f16x2_min{};
138 bool uses_atomic_f16x2_max{};
139 bool uses_atomic_f32x2_add{};
140 bool uses_atomic_f32x2_min{};
141 bool uses_atomic_f32x2_max{};
142 bool uses_64_bit_atomics{};
143 bool uses_shared_memory_u32x2{};
131 144
132 IR::Type used_constant_buffer_types{}; 145 IR::Type used_constant_buffer_types{};
133 146