summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYong He <yonghe@outlook.com>2025-07-28 11:16:21 -0700
committerGitHub <noreply@github.com>2025-07-28 18:16:21 +0000
commit4ca545ed9e98fa49740b3537473e02b950c23a99 (patch)
tree74b86b4f6129a8b04cd585d182542838be14c190
parent6d399804a353154259cf4410940f144db8f9b5cf (diff)
Update slang-rhi to fix CI error on debug. (#7946)
* Update slang-rhi * Fix profile lookup on `nullptr`. * update rhi
m---------external/slang-rhi0
-rw-r--r--source/slang/slang-profile.cpp2
2 files changed, 1 insertions, 1 deletions
diff --git a/external/slang-rhi b/external/slang-rhi
-Subproject 071c1b33c834d711ff09e6804edd66118ed2624
+Subproject 9e302f9c3f6c746651b879ee4535b0cfd17e184
diff --git a/source/slang/slang-profile.cpp b/source/slang/slang-profile.cpp
index f7f6b7bdd..620c2f5bc 100644
--- a/source/slang/slang-profile.cpp
+++ b/source/slang/slang-profile.cpp
@@ -19,7 +19,7 @@ Profile Profile::lookUp(UnownedStringSlice const& name)
Profile Profile::lookUp(char const* name)
{
- return lookUp(UnownedTerminatedStringSlice(name));
+ return lookUp(UnownedStringSlice(name));
}
CapabilitySet Profile::getCapabilityName()