Skip to content

Commit 9603fde

Browse files
author
Tim Foley
authored
Fix a reference-counting bug in one of the session creation routines. (shader-slang#1230)
This is pretty straightforward, because we were calling `Session::init` (which can retain/release the session) on a `Session*` (no reference held). The catch is that our current tests use the older form of the Slang API, while Falcor relies on the newer API, and so the recent change to our reference-counting logic introduced a regression that we didn't detect in testing. This change just fixes the direct issue but doesn't address the gap in testing. A better long-term fix would be to fully define our "1.0" API, shift our testing to it, and layer the old API on top of it (to try and avoid regressions for client code).
1 parent 46a1b5f commit 9603fde

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/slang/slang.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2632,7 +2632,7 @@ SLANG_API SlangResult slang_createGlobalSession(
26322632
if(apiVersion != 0)
26332633
return SLANG_E_NOT_IMPLEMENTED;
26342634

2635-
Slang::Session* globalSession = new Slang::Session();
2635+
Slang::RefPtr<Slang::Session> globalSession(new Slang::Session());
26362636
globalSession->init();
26372637
Slang::ComPtr<slang::IGlobalSession> result(Slang::asExternal(globalSession));
26382638
*outGlobalSession = result.detach();

0 commit comments

Comments
 (0)