diff options
| author | Tim Foley <tfoleyNV@users.noreply.github.com> | 2017-06-13 14:10:10 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-06-13 14:10:10 -0700 |
| commit | 5a11b47b34845874e1d8bfa28181661863645920 (patch) | |
| tree | ed48ba12c7db141d517b29343b9127692e72ad8c /tools/render-test/options.cpp | |
| parent | 7fc4c40b17f340800d6616e0bae111606cef18cc (diff) | |
| parent | d81c347e0edcbbf181885baf2b13978c28dfc9a8 (diff) | |
Merge pull request #5 from tfoleyNV/cross-compile
Cross compilation
Diffstat (limited to 'tools/render-test/options.cpp')
| -rw-r--r-- | tools/render-test/options.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/render-test/options.cpp b/tools/render-test/options.cpp index 260e6f46c..a486c8b15 100644 --- a/tools/render-test/options.cpp +++ b/tools/render-test/options.cpp @@ -60,6 +60,14 @@ void parseOptions(int* argc, char** argv) { gOptions.mode = Mode::GLSL; } + else if( strcmp(arg, "-hlsl-rewrite") == 0 ) + { + gOptions.mode = Mode::HLSLRewrite; + } + else if( strcmp(arg, "-glsl-rewrite") == 0 ) + { + gOptions.mode = Mode::GLSLRewrite; + } else if( strcmp(arg, "-slang") == 0 ) { gOptions.mode = Mode::Slang; |
