diff options
author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2021-04-04 10:17:17 +0200 |
---|---|---|
committer | ameerj <52414509+ameerj@users.noreply.github.com> | 2021-07-23 03:51:26 +0200 |
commit | da6cf2632cd4dc0d2b0278353fcaee0789b418c0 (patch) | |
tree | 90c2d6f6fa724365a4a23c888389e525e316a4fd /src/shader_recompiler/backend/spirv/emit_context.h | |
parent | shader: Implement BAR and fix memory barriers (diff) | |
download | yuzu-da6cf2632cd4dc0d2b0278353fcaee0789b418c0.tar yuzu-da6cf2632cd4dc0d2b0278353fcaee0789b418c0.tar.gz yuzu-da6cf2632cd4dc0d2b0278353fcaee0789b418c0.tar.bz2 yuzu-da6cf2632cd4dc0d2b0278353fcaee0789b418c0.tar.lz yuzu-da6cf2632cd4dc0d2b0278353fcaee0789b418c0.tar.xz yuzu-da6cf2632cd4dc0d2b0278353fcaee0789b418c0.tar.zst yuzu-da6cf2632cd4dc0d2b0278353fcaee0789b418c0.zip |
Diffstat (limited to 'src/shader_recompiler/backend/spirv/emit_context.h')
-rw-r--r-- | src/shader_recompiler/backend/spirv/emit_context.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/shader_recompiler/backend/spirv/emit_context.h b/src/shader_recompiler/backend/spirv/emit_context.h index 3a686a78c..03c5a6aba 100644 --- a/src/shader_recompiler/backend/spirv/emit_context.h +++ b/src/shader_recompiler/backend/spirv/emit_context.h @@ -97,6 +97,11 @@ public: Id workgroup_id{}; Id local_invocation_id{}; Id subgroup_local_invocation_id{}; + Id subgroup_mask_eq{}; + Id subgroup_mask_lt{}; + Id subgroup_mask_le{}; + Id subgroup_mask_gt{}; + Id subgroup_mask_ge{}; Id instance_id{}; Id instance_index{}; Id base_instance{}; |