From 0a6828572aa4cc1f0f99993e77c321799eb88cca Mon Sep 17 00:00:00 2001 From: Darren Wihandi <65404740+fairywreath@users.noreply.github.com> Date: Sun, 2 Feb 2025 15:27:11 -0500 Subject: Add support for WGSL subgroup operations (#6213) * initial work * more work * more work on glsl intrinsics * add subgroup broadcast for glsl * wip add wgsl extension tracking * enable tests, enable extensions and added some todos * format and warning fixes * fix wgsl extension tracker --------- Co-authored-by: Yong He --- source/slang/slang-ast-print.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source/slang/slang-ast-print.cpp') diff --git a/source/slang/slang-ast-print.cpp b/source/slang/slang-ast-print.cpp index 22a5ec8d1..597a35f4b 100644 --- a/source/slang/slang-ast-print.cpp +++ b/source/slang/slang-ast-print.cpp @@ -434,6 +434,8 @@ void ASTPrinter::addDeclKindPrefix(Decl* decl) continue; if (as(modifier)) continue; + if (as(modifier)) + continue; if (as(modifier)) continue; if (as(modifier)) -- cgit v1.2.3