From 21d17abb0e511806b7c93effc58f37169d837766 Mon Sep 17 00:00:00 2001 From: Ellie Hermaszewska Date: Fri, 15 Dec 2023 23:41:27 +0800 Subject: GLSL SSBO Support (#3400) * Squash warnings and fix build with SLANG_EMBED_STDLIB * Add GLSLShaderStorageBuffer magic wrapper * Make GLSLSSBO not a uniform type * Buffers are global variables * Allow creating ssbo aggregate types * Allow reading from RWSB using builder * Nicer debug printing for ssbos * Lower SSBO to RWSB * Parse interface blocks into wrapped structs * Lower Interface Block Decls to structs * remove comment * Two simple ssbo tests * Move ssbo pass earlier * Correct mutable buffer detection * Do not replace ssbo usages outside of blocks * Treat GLSLSSBO as a mutable buffer for type layouts * regenerate vs projects * Correctly detect ssbo types * Diagnose illegal ssbo * remove unreachable code * neaten * ci wobble * Make GLSLSSBO ast handling more uniform * Add modifier cases for glsl * Use empty val info for unhandled interface blocks necessary for ./tests/glsl/out-binding-redeclaration.slang * more sophisticated modifier check * Correct ssbo wrapper name --- source/slang/slang-check-decl.cpp | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'source/slang/slang-check-decl.cpp') diff --git a/source/slang/slang-check-decl.cpp b/source/slang/slang-check-decl.cpp index 75aed010d..0df9619b6 100644 --- a/source/slang/slang-check-decl.cpp +++ b/source/slang/slang-check-decl.cpp @@ -1253,7 +1253,8 @@ namespace Slang // without any `uniform` modifiers as true global variables by default. if (!varDecl->findModifier() && !varDecl->findModifier() && - !varDecl->findModifier()) + !varDecl->findModifier() && + !varDecl->findModifier()) { if (!as(varDecl->type) && !as(varDecl->type)) { @@ -1584,7 +1585,7 @@ namespace Slang addModifier(aggTypeDecl, m_astBuilder->create()); // The visibility of synthesized decl should be the min of the parent decl and the requirement. - if (auto visModifier = requirementDeclRef.getDecl()->findModifier()) + if (requirementDeclRef.getDecl()->findModifier()) { auto requirementVisibility = getDeclVisibility(requirementDeclRef.getDecl()); auto thisVisibility = getDeclVisibility(context->parentDecl); @@ -1833,7 +1834,7 @@ namespace Slang if (moduleDecl->members.getCount() > 0) { auto firstMember = moduleDecl->members[0]; - if (auto implDecl = as(firstMember)) + if (as(firstMember)) { if (!getShared()->isInLanguageServer()) { @@ -2993,7 +2994,7 @@ namespace Slang addModifier(synFuncDecl, attr); } // The visibility of synthesized decl should be the min of the parent decl and the requirement. - if (auto visModifier = requiredMemberDeclRef.getDecl()->findModifier()) + if (requiredMemberDeclRef.getDecl()->findModifier()) { auto requirementVisibility = getDeclVisibility(requiredMemberDeclRef.getDecl()); auto thisVisibility = getDeclVisibility(context->parentDecl); @@ -3539,7 +3540,7 @@ namespace Slang synPropertyDecl->parentDecl = context->parentDecl; // The visibility of synthesized decl should be the min of the parent decl and the requirement. - if (auto visModifier = requiredMemberDeclRef.getDecl()->findModifier()) + if (requiredMemberDeclRef.getDecl()->findModifier()) { auto requirementVisibility = getDeclVisibility(requiredMemberDeclRef.getDecl()); auto thisVisibility = getDeclVisibility(context->parentDecl); @@ -7049,11 +7050,11 @@ namespace Slang } auto firstMember = fileDecl->members[0]; - if (auto moduleDeclaration = as(firstMember)) + if (as(firstMember)) { // We are trying to implement a file that defines a module, this is expected. } - else if (auto implementing = as(firstMember)) + else if (as(firstMember)) { getSink()->diagnose(decl->moduleNameAndLoc.loc, Diagnostics::implementingMustReferencePrimaryModuleFile); return; -- cgit v1.2.3