summaryrefslogtreecommitdiff
path: root/source/slang/compiler.h
diff options
context:
space:
mode:
authorjsmall-nvidia <jsmall@nvidia.com>2018-10-26 08:16:54 -0400
committerGitHub <noreply@github.com>2018-10-26 08:16:54 -0400
commitcb9d679a3a93c65c44904bf77811b9d74e431e23 (patch)
treebdc78bc01351f6eeed4714d01cd3aef6cf067109 /source/slang/compiler.h
parentad47fe71defcc96a7bed87a4c3a40543978f0fb8 (diff)
Feature/file system cache (#692)
* First pass at caching file system. * default-file-system -> slang-file-system fix problem with location("build.linux") confusing windows build for now. * Added CompressedResult Fix problem in Result construction with it being unsigned * Add support for Path simplification. * Testing for Path::Simplify. * Refactored CacheFileSystem - automatically handles ISlangFileSystem or ISlangFileSystemExt appropriately. Removed WrapFileSystem - because wasn't possible to emulate some of the behavior if just loadFile is implemented. Split out StringBlob - so that no need to convert between ISlangBlob and String repeatidly. * Remove unwanted code in ~CompileRequest
Diffstat (limited to 'source/slang/compiler.h')
-rw-r--r--source/slang/compiler.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/source/slang/compiler.h b/source/slang/compiler.h
index 04508837f..de099c40b 100644
--- a/source/slang/compiler.h
+++ b/source/slang/compiler.h
@@ -287,9 +287,6 @@ namespace Slang
class Session;
- /// Create a blob that will retain a string for its lifetime.
- ///
- ComPtr<ISlangBlob> createStringBlob(String const& string);
/// Create a blob that will retain (a copy of) raw data.
///
@@ -411,8 +408,6 @@ namespace Slang
CompileRequest(Session* session);
- ~CompileRequest();
-
RefPtr<Expr> parseTypeString(TranslationUnitRequest * translationUnit, String typeStr, RefPtr<Scope> scope);
Type* getTypeFromString(String typeStr);