summaryrefslogtreecommitdiffstats
path: root/examples/example-base/test-base.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/example-base/test-base.cpp')
-rw-r--r--examples/example-base/test-base.cpp15
1 files changed, 11 insertions, 4 deletions
diff --git a/examples/example-base/test-base.cpp b/examples/example-base/test-base.cpp
index 9d8ec8ce6..5d40f2d80 100644
--- a/examples/example-base/test-base.cpp
+++ b/examples/example-base/test-base.cpp
@@ -30,23 +30,30 @@ int TestBase::parseOption(int argc, char** argv)
return 0;
}
-void TestBase::printEntrypointHashes(int entryPointCount, int targetCount, ComPtr<slang::IComponentType>& composedProgram)
+void TestBase::printEntrypointHashes(
+ int entryPointCount,
+ int targetCount,
+ ComPtr<slang::IComponentType>& composedProgram)
{
for (int targetIndex = 0; targetIndex < targetCount; targetIndex++)
{
for (int entryPointIndex = 0; entryPointIndex < entryPointCount; entryPointIndex++)
{
ComPtr<slang::IBlob> entryPointHashBlob;
- composedProgram->getEntryPointHash(entryPointIndex, targetIndex, entryPointHashBlob.writeRef());
+ composedProgram->getEntryPointHash(
+ entryPointIndex,
+ targetIndex,
+ entryPointHashBlob.writeRef());
Slang::StringBuilder strBuilder;
- strBuilder << "callIdx: " << m_globalCounter << ", entrypoint: "<< entryPointIndex << ", target: " << targetIndex << ", hash: ";
+ strBuilder << "callIdx: " << m_globalCounter << ", entrypoint: " << entryPointIndex
+ << ", target: " << targetIndex << ", hash: ";
m_globalCounter++;
uint8_t* buffer = (uint8_t*)entryPointHashBlob->getBufferPointer();
for (size_t i = 0; i < entryPointHashBlob->getBufferSize(); i++)
{
- strBuilder<<Slang::StringUtil::makeStringWithFormat("%.2X", buffer[i]);
+ strBuilder << Slang::StringUtil::makeStringWithFormat("%.2X", buffer[i]);
}
fprintf(stdout, "%s\n", strBuilder.begin());
}