summaryrefslogtreecommitdiffstats
path: root/source/slang/slang-parameter-binding.cpp
diff options
context:
space:
mode:
authorjsmall-nvidia <jsmall@nvidia.com>2023-04-25 10:43:29 -0400
committerGitHub <noreply@github.com>2023-04-25 10:43:29 -0400
commit7b7c095b37e85ca3a8f55eff1c3d9643d467b8e0 (patch)
tree9c71955dbc956b0058b19818ca127c8132cda512 /source/slang/slang-parameter-binding.cpp
parent284cee1f246c072f190c87c8fb60c1d2181e458f (diff)
Dictionary using lowerCamel (#2835)
* #include an absolute path didn't work - because paths were taken to always be relative. * WIP lowerCamel Dictionary. * WIP more lowerCamel fixes for Dictionary. * Add/Remove/Clear * GetValue/Contains * Fix tabs in dictionary. Count -> getCount * Fix fields with caps. * Key -> key Value -> value Use m_ for members where appropriate. Use lowerCamel in linked list. * Some small fixes/improvements to Dictionary. * Kick CI.
Diffstat (limited to 'source/slang/slang-parameter-binding.cpp')
-rw-r--r--source/slang/slang-parameter-binding.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/slang/slang-parameter-binding.cpp b/source/slang/slang-parameter-binding.cpp
index f3eabf613..1edd87d3a 100644
--- a/source/slang/slang-parameter-binding.cpp
+++ b/source/slang/slang-parameter-binding.cpp
@@ -776,11 +776,11 @@ static RefPtr<UsedRangeSet> findUsedRangeSetForSpace(
UInt space)
{
RefPtr<UsedRangeSet> usedRangeSet;
- if (context->shared->globalSpaceUsedRangeSets.TryGetValue(space, usedRangeSet))
+ if (context->shared->globalSpaceUsedRangeSets.tryGetValue(space, usedRangeSet))
return usedRangeSet;
usedRangeSet = new UsedRangeSet();
- context->shared->globalSpaceUsedRangeSets.Add(space, usedRangeSet);
+ context->shared->globalSpaceUsedRangeSets.add(space, usedRangeSet);
return usedRangeSet;
}
@@ -1979,7 +1979,7 @@ static RefPtr<TypeLayout> processEntryPointVaryingParameter(
fieldVarLayout->varDecl = field;
structLayout->fields.add(fieldVarLayout);
- structLayout->mapVarToLayout.Add(field.getDecl(), fieldVarLayout);
+ structLayout->mapVarToLayout.add(field.getDecl(), fieldVarLayout);
auto fieldTypeLayout = processEntryPointVaryingParameterDecl(
context,
@@ -2220,7 +2220,7 @@ struct ScopeLayoutBuilder
m_structLayout->fields.add(varLayout);
- m_structLayout->mapVarToLayout.Add(varLayout->varDecl.getDecl(), varLayout);
+ m_structLayout->mapVarToLayout.add(varLayout->varDecl.getDecl(), varLayout);
}
void addParameter(
@@ -2794,7 +2794,7 @@ struct CollectGlobalGenericArgumentsVisitor : ComponentTypeVisitor
{
if(auto globalGenericTypeParamDecl = as<GlobalGenericParamDecl>(globalGenericArg.paramDecl))
{
- m_context->shared->programLayout->globalGenericArgs.Add(globalGenericTypeParamDecl, globalGenericArg.argVal);
+ m_context->shared->programLayout->globalGenericArgs.add(globalGenericTypeParamDecl, globalGenericArg.argVal);
}
}
}
@@ -3048,7 +3048,7 @@ static int _calcTotalNumUsedRegistersForLayoutResourceKind(ParameterBindingConte
int numUsed = 0;
for (auto& pair : bindingContext->shared->globalSpaceUsedRangeSets)
{
- UsedRangeSet* rangeSet = pair.Value;
+ UsedRangeSet* rangeSet = pair.value;
const auto& usedRanges = rangeSet->usedResourceRanges[kind];
for (const auto& usedRange : usedRanges.ranges)
{