summaryrefslogtreecommitdiff
path: root/tools/slang-test/test-context.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/slang-test/test-context.h')
-rw-r--r--tools/slang-test/test-context.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/slang-test/test-context.h b/tools/slang-test/test-context.h
index a9f3cec25..aa81fc72a 100644
--- a/tools/slang-test/test-context.h
+++ b/tools/slang-test/test-context.h
@@ -9,7 +9,7 @@
#include "../../source/core/slang-dictionary.h"
#include "../../source/core/slang-test-tool-util.h"
#include "../../source/core/slang-render-api-util.h"
-#include "../../source/core/slang-cpp-compiler.h"
+#include "../../source/core/slang-downstream-compiler.h"
#include "options.h"
@@ -92,9 +92,9 @@ class TestContext
/// If set, then tests are executed
bool isExecuting() const { return testRequirements == nullptr; }
- /// Get compiler factory
- Slang::CPPCompilerSet* getCPPCompilerSet();
- Slang::CPPCompiler* getDefaultCPPCompiler();
+ /// Get compiler set
+ Slang::DownstreamCompilerSet* getCompilerSet();
+ Slang::DownstreamCompiler* getDefaultCompiler();
/// Ctor
TestContext();
@@ -112,7 +112,7 @@ class TestContext
Slang::RenderApiFlags availableRenderApiFlags = 0;
bool isAvailableRenderApiFlagsValid = false;
- Slang::RefPtr<Slang::CPPCompilerSet> cppCompilerSet;
+ Slang::RefPtr<Slang::DownstreamCompilerSet> compilerSet;
protected:
struct SharedLibraryTool