summaryrefslogtreecommitdiffstats
path: root/source/slang/slang-emit-cpp.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-emit-cpp.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-emit-cpp.cpp')
-rw-r--r--source/slang/slang-emit-cpp.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/slang/slang-emit-cpp.cpp b/source/slang/slang-emit-cpp.cpp
index 89d1328bc..38855ae44 100644
--- a/source/slang/slang-emit-cpp.cpp
+++ b/source/slang/slang-emit-cpp.cpp
@@ -102,7 +102,7 @@ static const char s_xyzwNames[] = "xyzw";
UnownedStringSlice CPPSourceEmitter::_getTypeName(IRType* type)
{
StringSlicePool::Handle handle = StringSlicePool::kNullHandle;
- if (m_typeNameMap.TryGetValue(type, handle))
+ if (m_typeNameMap.tryGetValue(type, handle))
{
return m_slicePool.getSlice(handle);
}
@@ -113,7 +113,7 @@ UnownedStringSlice CPPSourceEmitter::_getTypeName(IRType* type)
handle = m_slicePool.add(builder);
}
- m_typeNameMap.Add(type, handle);
+ m_typeNameMap.add(type, handle);
SLANG_ASSERT(handle != StringSlicePool::kNullHandle);
return m_slicePool.getSlice(handle);
@@ -1889,13 +1889,13 @@ void CPPSourceEmitter::_emitEntryPointGroup(const Int sizeAlongAxis[kThreadGroup
for (Index i = 0; i < axes.getCount(); ++i)
{
const auto& axis = axes[i];
- builder.Clear();
+ builder.clear();
const char elem[2] = { s_xyzwNames[axis.axis], 0 };
builder << "for (uint32_t " << elem << " = 0; " << elem << " < " << axis.size << "; ++" << elem << ")\n{\n";
m_writer->emit(builder);
m_writer->indent();
- builder.Clear();
+ builder.clear();
builder << "threadInput.groupThreadID." << elem << " = " << elem << ";\n";
m_writer->emit(builder);
}
@@ -1923,7 +1923,7 @@ void CPPSourceEmitter::_emitEntryPointGroupRange(const Int sizeAlongAxis[kThread
for (Index i = 0; i < axes.getCount(); ++i)
{
const auto& axis = axes[i];
- builder.Clear();
+ builder.clear();
const char elem[2] = { s_xyzwNames[axis.axis], 0 };
builder << "for (uint32_t " << elem << " = vi.startGroupID." << elem << "; " << elem << " < vi.endGroupID." << elem << "; ++" << elem << ")\n{\n";
@@ -1956,7 +1956,7 @@ void CPPSourceEmitter::_emitInitAxisValues(const Int sizeAlongAxis[kThreadGroupA
m_writer->indent();
for (int i = 0; i < kThreadGroupAxisCount; ++i)
{
- builder.Clear();
+ builder.clear();
const char elem[2] = { s_xyzwNames[i], 0 };
builder << mulName << "." << elem << " * " << sizeAlongAxis[i];
if (addName.getLength() > 0)