diff options
| author | jsmall-nvidia <jsmall@nvidia.com> | 2019-11-01 10:31:01 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-11-01 10:31:01 -0400 |
| commit | 068f2a2552ba49335a8a1e72e1731d047335fe82 (patch) | |
| tree | 98c3f8019da4bd256168d3d953878da9512d4518 /source/slang/slang-options.h | |
| parent | f59df3814a514cab01f69a24e3330d13de3f9c92 (diff) | |
-extract-repro gives approximation of 'command line' used (#1103)
* Added feature to repro manifest of approximation of command line that was used.
* Add missing slang-options.h
Diffstat (limited to 'source/slang/slang-options.h')
| -rw-r--r-- | source/slang/slang-options.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/source/slang/slang-options.h b/source/slang/slang-options.h new file mode 100644 index 000000000..bb65c937b --- /dev/null +++ b/source/slang/slang-options.h @@ -0,0 +1,15 @@ +// slang-options.h +#ifndef SLANG_OPTIONS_H +#define SLANG_OPTIONS_H + +#include "../core/slang-basic.h" + +namespace Slang +{ + +UnownedStringSlice getPassThroughName(SlangPassThrough passThru); + +UnownedStringSlice getCodeGenTargetName(SlangCompileTarget target); + +} +#endif |
