@@ -3511,34 +3511,22 @@ static void collectParameters(ParameterBindingContext* inContext, ComponentType*
3511
3511
// / Emit a diagnostic about a uniform/ordinary parameter at global scope.
3512
3512
void diagnoseGlobalUniform (SharedParameterBindingContext* sharedContext, VarDeclBase* varDecl)
3513
3513
{
3514
- // This subroutine gets invoked if a shader parameter containing
3515
- // "ordinary" data (sometimes just called "uniform" data) is present
3516
- // at the global scope.
3517
- //
3518
- // Slang can support such parameters by aggregating them into
3519
- // an implicit constant buffer, but it is also common for programmers
3520
- // to accidentally declare a global-scope shader parameter when they
3521
- // meant to declare a global variable instead:
3522
- //
3523
- // int gCounter = 0; // this is a shader parameter, not a global
3524
- //
3525
- // In order to avoid mistakes, we'd like to warn the user when
3526
- // they write code like the above, and hint to them that they
3527
- // should make their intention more explicit with a keyword:
3528
- //
3529
- // static int gCounter = 0; // this is now a (static) global
3530
- //
3531
- // uniform int gCounter; // this is now explicitly a shader parameter
3532
- //
3533
- // We skip the diagnostic whenever the variable was explicitly `uniform`,
3534
- // under the assumption that the programmer who added that modifier
3535
- // knew what they were opting into.
3536
- //
3537
- if (varDecl->hasModifier <HLSLUniformModifier>())
3538
- return ;
3514
+ // Don't emit the implicit global shader parameter warning if the variable is explicitly marked
3515
+ // as uniform
3516
+ if (!varDecl->hasModifier <HLSLUniformModifier>())
3517
+ {
3518
+ getSink (sharedContext)
3519
+ ->diagnose (varDecl, Diagnostics::globalUniformNotExpected, varDecl->getName ());
3520
+ }
3539
3521
3540
- getSink (sharedContext)
3541
- ->diagnose (varDecl, Diagnostics::globalUniformNotExpected, varDecl->getName ());
3522
+ // Always check and warn about binding attributes being ignored, regardless of uniform modifier
3523
+ if (varDecl->findModifier <GLSLBindingAttribute>())
3524
+ {
3525
+ sharedContext->m_sink ->diagnose (
3526
+ varDecl,
3527
+ Diagnostics::bindingAttributeIgnoredOnUniform,
3528
+ varDecl->getName ());
3529
+ }
3542
3530
}
3543
3531
3544
3532
0 commit comments