diff options
| author | Yong He <yonghe@outlook.com> | 2025-01-22 09:40:15 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-22 09:40:15 -0800 |
| commit | 8000e0ede34e920cc7f37d69a335d74a472eff42 (patch) | |
| tree | ccf7b3c7fb97d3d5df3afd38fde9e3221e3349de /tools/slang-unit-test/unit-test-glsl-compile.cpp | |
| parent | 04353fb7602b7eb6a8b86193510ebe0c670b7724 (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 'tools/slang-unit-test/unit-test-glsl-compile.cpp')
| -rw-r--r-- | tools/slang-unit-test/unit-test-glsl-compile.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/slang-unit-test/unit-test-glsl-compile.cpp b/tools/slang-unit-test/unit-test-glsl-compile.cpp index 5a49da91b..288764295 100644 --- a/tools/slang-unit-test/unit-test-glsl-compile.cpp +++ b/tools/slang-unit-test/unit-test-glsl-compile.cpp @@ -26,7 +26,9 @@ SLANG_UNIT_TEST(glslCompile) } )"; ComPtr<slang::IGlobalSession> globalSession; - SLANG_CHECK(slang_createGlobalSession(SLANG_API_VERSION, globalSession.writeRef()) == SLANG_OK); + SlangGlobalSessionDesc globalDesc = {}; + globalDesc.enableGLSL = true; + SLANG_CHECK(slang_createGlobalSession2(&globalDesc, globalSession.writeRef()) == SLANG_OK); slang::TargetDesc targetDesc = {}; targetDesc.format = SLANG_SPIRV; targetDesc.profile = globalSession->findProfile("spirv_1_5"); |
