summaryrefslogtreecommitdiffstats
path: root/tools/slang-test/options.cpp
diff options
context:
space:
mode:
authorjsmall-nvidia <jsmall@nvidia.com>2020-08-19 15:51:43 -0400
committerGitHub <noreply@github.com>2020-08-19 12:51:43 -0700
commitb5a4161a801a573179b1f552e5c53748d2667b03 (patch)
tree4b63bc7274ac060054ab239da4f75aa7233bbddf /tools/slang-test/options.cpp
parent2fffbc5ff0727482c6ab7d66f6d852701adb277b (diff)
Remove IncludeHandler. (#1505)
nvAPI -> NVAPI nvAPIPath -> nvapiPath DxcIncludeHandler don't reference count. nv-api-path -> nvapi-path Co-authored-by: Tim Foley <tfoleyNV@users.noreply.github.com>
Diffstat (limited to 'tools/slang-test/options.cpp')
-rw-r--r--tools/slang-test/options.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/slang-test/options.cpp b/tools/slang-test/options.cpp
index 875f9ef0b..eee099965 100644
--- a/tools/slang-test/options.cpp
+++ b/tools/slang-test/options.cpp
@@ -266,7 +266,7 @@ static bool _isSubCommand(const char* arg)
return res;
}
}
- else if (strcmp(arg, "-nv-api-path") == 0)
+ else if (strcmp(arg, "-nvapi-path") == 0)
{
if (argCursor == argEnd)
{
@@ -274,7 +274,7 @@ static bool _isSubCommand(const char* arg)
return SLANG_FAIL;
}
- optionsOut->nvAPIPath = *argCursor++;
+ optionsOut->nvapiPath = *argCursor++;
}
else
{