diff options
| author | Kai-Hwa Yao <kyao@nvidia.com> | 2017-07-10 13:50:16 -0700 |
|---|---|---|
| committer | Kai-Hwa Yao <kyao@nvidia.com> | 2017-07-10 17:49:35 -0700 |
| commit | 7c0ebeee95cb72f086a261ed6c55f33571bb62db (patch) | |
| tree | 037b716c36ced7fea574c231405c05bf2d58e6a0 /source/slang/compiler.h | |
| parent | 4bb88c4a45707fb88150aa7952b4c9b9f55b1749 (diff) | |
Refactored compile output to work with raw data instead of Strings
Diffstat (limited to 'source/slang/compiler.h')
| -rw-r--r-- | source/slang/compiler.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/slang/compiler.h b/source/slang/compiler.h index cb7eb6265..3763faec7 100644 --- a/source/slang/compiler.h +++ b/source/slang/compiler.h @@ -54,7 +54,7 @@ namespace Slang // Result of compiling an entry point struct EntryPointResult { - String outputSource; + List<uint8_t> outputSource; }; // Describes an entry point that we've been requested to compile @@ -108,7 +108,7 @@ namespace Slang // Result of compiling a translation unit struct TranslationUnitResult { - String outputSource; + List<uint8_t> outputSource; }; // A single translation unit requested to be compiled. |
