diff options
author | ameerj <52414509+ameerj@users.noreply.github.com> | 2021-05-25 22:13:50 -0400 |
---|---|---|
committer | ameerj <52414509+ameerj@users.noreply.github.com> | 2021-07-22 21:51:36 -0400 |
commit | 5399906c26292634ab3eec5fce88640092e9c4c2 (patch) | |
tree | 1205e3116c0592a42a4ad5173cbf9716372489ac /src/shader_recompiler/shader_info.h | |
parent | b95716e5431e7ddb05239c31080c01aab24a13ac (diff) |
glsl: Track S32 atomics
Diffstat (limited to 'src/shader_recompiler/shader_info.h')
-rw-r--r-- | src/shader_recompiler/shader_info.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/shader_recompiler/shader_info.h b/src/shader_recompiler/shader_info.h index be05eafcfa..9f7f0b42c3 100644 --- a/src/shader_recompiler/shader_info.h +++ b/src/shader_recompiler/shader_info.h @@ -189,8 +189,9 @@ struct Info { bool uses_atomic_f32x2_add{}; bool uses_atomic_f32x2_min{}; bool uses_atomic_f32x2_max{}; + bool uses_atomic_s32_min{}; + bool uses_atomic_s32_max{}; bool uses_int64_bit_atomics{}; - bool uses_s32_atomics{}; bool uses_global_memory{}; bool uses_atomic_image_u32{}; |