summaryrefslogtreecommitdiff
path: root/tools/render-test
diff options
context:
space:
mode:
Diffstat (limited to 'tools/render-test')
-rw-r--r--tools/render-test/options.cpp2
-rw-r--r--tools/render-test/shader-input-layout.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/render-test/options.cpp b/tools/render-test/options.cpp
index ef15346c6..3b2c07ce6 100644
--- a/tools/render-test/options.cpp
+++ b/tools/render-test/options.cpp
@@ -174,7 +174,7 @@ static gfx::DeviceType _toRenderType(Slang::RenderApiType apiType)
for (Index i = 0; i < 3; ++i)
{
string = slices[i];
- int v = StringToInt(string);
+ int v = stringToInt(string);
if (v < 1)
{
sink.diagnose(dispatchSize.loc, RenderTestDiagnostics::expectingPositiveComputeDispatch);
diff --git a/tools/render-test/shader-input-layout.cpp b/tools/render-test/shader-input-layout.cpp
index 7aef0025f..2883dd465 100644
--- a/tools/render-test/shader-input-layout.cpp
+++ b/tools/render-test/shader-input-layout.cpp
@@ -434,7 +434,7 @@ namespace renderer_test
sb << parseTypeName(parser);
sb << ">";
parser.Read(">");
- return sb.ProduceString();
+ return sb.produceString();
}
return typeName;
}