diff options
| author | Mukund Keshava <mkeshava@nvidia.com> | 2025-02-28 07:26:42 +0530 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-27 17:56:42 -0800 |
| commit | 96f19629d4cfbe282af010cee704409a6fb2f59c (patch) | |
| tree | 0146f729e0b2297c7a18e31f0de68562ac5f76cb /tools/slang-test/options.cpp | |
| parent | 38734ec1f6644f1565aeb91106f371b14d3ba07a (diff) | |
Remove adapter option from slang-test (#6475)
Fixes #6390
This commit removes the deprecated -adapter command-line option from
slang-test.
This change aligns with commit 015bde8d5a46f32979c00dbb1feb4b3d80729c44,
which previously removed the adapter option from render-test and implemented
the more AdapterLUID mechanism.
Co-authored-by: Ellie Hermaszewska <ellieh@nvidia.com>
Co-authored-by: Yong He <yonghe@outlook.com>
Diffstat (limited to 'tools/slang-test/options.cpp')
| -rw-r--r-- | tools/slang-test/options.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/tools/slang-test/options.cpp b/tools/slang-test/options.cpp index b3f4bdc10..45533fe49 100644 --- a/tools/slang-test/options.cpp +++ b/tools/slang-test/options.cpp @@ -190,15 +190,6 @@ static bool _isSubCommand(const char* arg) argCursor++; // Assumed to be handle by .bat file that called us } - else if (strcmp(arg, "-adapter") == 0) - { - if (argCursor == argEnd) - { - stdError.print("error: expected operand for '%s'\n", arg); - return SLANG_FAIL; - } - optionsOut->adapter = *argCursor++; - } else if (strcmp(arg, "-server-count") == 0) { if (argCursor == argEnd) |
