diff options
| author | 2021-04-11 02:07:02 -0400 | |
|---|---|---|
| committer | 2021-07-22 21:51:27 -0400 | |
| commit | 3db2b3effa953ae66457b7a19b419fc4db2c4801 (patch) | |
| tree | 04c73897a74be053a610edf60703c72e985ee590 /src/shader_recompiler/shader_info.h | |
| parent | nsight_aftermath_tracker: Report used shaders to Nsight Aftermath (diff) | |
| download | yuzu-3db2b3effa953ae66457b7a19b419fc4db2c4801.tar.gz yuzu-3db2b3effa953ae66457b7a19b419fc4db2c4801.tar.xz yuzu-3db2b3effa953ae66457b7a19b419fc4db2c4801.zip | |
shader: Implement ATOM/S and RED
Diffstat (limited to 'src/shader_recompiler/shader_info.h')
| -rw-r--r-- | src/shader_recompiler/shader_info.h | 13 |
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 | ||