summaryrefslogtreecommitdiffstats
path: root/source/slangc/main.cpp
diff options
context:
space:
mode:
authorYong He <yonghe@outlook.com>2025-01-22 09:40:15 -0800
committerGitHub <noreply@github.com>2025-01-22 09:40:15 -0800
commit8000e0ede34e920cc7f37d69a335d74a472eff42 (patch)
treeccf7b3c7fb97d3d5df3afd38fde9e3221e3349de /source/slangc/main.cpp
parent04353fb7602b7eb6a8b86193510ebe0c670b7724 (diff)
Cache and reuse glsl module. (#6152)
* Cache and reuse glsl module. * Fix. * Implement record/replay for the new api. * Fix record replay. * Fix test.
Diffstat (limited to 'source/slangc/main.cpp')
-rw-r--r--source/slangc/main.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/slangc/main.cpp b/source/slangc/main.cpp
index 2090b0412..718de6968 100644
--- a/source/slangc/main.cpp
+++ b/source/slangc/main.cpp
@@ -100,7 +100,9 @@ SLANG_TEST_TOOL_API SlangResult innerMain(
else if (!session)
{
// Just create the global session in the regular way if there isn't one set
- SLANG_RETURN_ON_FAIL(slang_createGlobalSession(SLANG_API_VERSION, session.writeRef()));
+ SlangGlobalSessionDesc desc = {};
+ desc.enableGLSL = true;
+ SLANG_RETURN_ON_FAIL(slang_createGlobalSession2(&desc, session.writeRef()));
}
if (!shouldEmbedPrelude(argv, argc))