diff options
| author | jsmall-nvidia <jsmall@nvidia.com> | 2020-01-29 09:02:55 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-01-29 09:02:55 -0500 |
| commit | 58cea79d8622a08b0887dbfda8f8042e42679c8f (patch) | |
| tree | 04c2e3e0ea1ec059b61e819987a2014e52050beb /tools/render-test/options.cpp | |
| parent | 8b3e3beea66d9773adf11ea2e163577d649f3d7c (diff) | |
Feature/test for double behavior (#1186)
* Split out binding writing.
* Pass in the entry type.
* Take into account output type with -output-using-type
Added GPULikeBindRoot
Added dxbc-double-problem test.
* Add the dxbc-double-problem test.
Diffstat (limited to 'tools/render-test/options.cpp')
| -rw-r--r-- | tools/render-test/options.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/render-test/options.cpp b/tools/render-test/options.cpp index 4d5d83ce5..fb433048c 100644 --- a/tools/render-test/options.cpp +++ b/tools/render-test/options.cpp @@ -185,6 +185,10 @@ SlangResult parseOptions(int argc, const char*const* argv, Slang::WriterHelper s gOptions.adapter = *argCursor++; } + else if (strcmp(arg, "-output-using-type") == 0) + { + gOptions.outputUsingType = true; + } else if (strcmp(arg, "-compute-dispatch") == 0) { if (argCursor == argEnd) |
