diff options
| author | Tim Foley <tfoleyNV@users.noreply.github.com> | 2017-06-20 12:14:31 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-06-20 12:14:31 -0700 |
| commit | 338232bff7144c6a0e7964984765f01d9f9eecb7 (patch) | |
| tree | e62d8f184bf04df0906fcc6c8a04803febe35376 /source/slang/syntax-visitors.h | |
| parent | 40617db15d87ece6e7cc88da23f747f8f827c69a (diff) | |
| parent | 327f2b7ec50a7480b458d6d3ba8e2ca7fcdb8498 (diff) | |
Merge pull request #36 from tfoleyNV/entry-point-indexing
Overhaul handling of entry points and translation units.
Diffstat (limited to 'source/slang/syntax-visitors.h')
| -rw-r--r-- | source/slang/syntax-visitors.h | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/source/slang/syntax-visitors.h b/source/slang/syntax-visitors.h index dbcbf2781..5d712b671 100644 --- a/source/slang/syntax-visitors.h +++ b/source/slang/syntax-visitors.h @@ -7,18 +7,16 @@ namespace Slang { - class CompileOptions; - struct CompileRequest; + class CompileRequest; class ShaderCompiler; class ShaderLinkInfo; class ShaderSymbol; - class TranslationUnitOptions; + class TranslationUnitRequest; SyntaxVisitor* CreateSemanticsVisitor( - DiagnosticSink* err, - CompileOptions const& options, - TranslationUnitOptions const& translationUnitOptions, - CompileRequest* request); + DiagnosticSink* err, + CompileRequest* request, + TranslationUnitRequest* translationUnit); // Look for a module that matches the given name: // either one we've loaded already, or one we |
