Rename std lib to core module

This commit is contained in:
Lauro Oyen
2024-11-23 23:25:30 +01:00
parent 6612431e0a
commit ba20d75cd4
2 changed files with 8 additions and 6 deletions
+2 -2
View File
@@ -170,10 +170,10 @@ impl GlobalSession {
)?)))
}
pub fn new_without_std_lib() -> Option<GlobalSession> {
pub fn new_without_core_module() -> Option<GlobalSession> {
let mut global_session = null_mut();
unsafe {
sys::slang_createGlobalSessionWithoutStdLib(
sys::slang_createGlobalSessionWithoutCoreModule(
sys::SLANG_API_VERSION as _,
&mut global_session,
)