From b7a619b45b0745f166d2dcc5985b994fb1d85d13 Mon Sep 17 00:00:00 2001 From: Jay Kwak <82421531+jkwak-work@users.noreply.github.com> Date: Mon, 28 Oct 2024 16:40:53 -0700 Subject: Replace the word stdlib or standard-library with core-module for source code (#5415) This commit changes the word "stdlib" or "standard library" to "core module" in the source code. --- source/slang-core-module/slang-embedded-core-module-source.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source/slang-core-module/slang-embedded-core-module-source.cpp') diff --git a/source/slang-core-module/slang-embedded-core-module-source.cpp b/source/slang-core-module/slang-embedded-core-module-source.cpp index f8ea00045..ff191fba1 100644 --- a/source/slang-core-module/slang-embedded-core-module-source.cpp +++ b/source/slang-core-module/slang-embedded-core-module-source.cpp @@ -288,7 +288,7 @@ namespace Slang if (!coreLibraryCode) { StringBuilder sb; - const String path = getStdlibPath(); + const String path = getCoreModulePath(); #include "core.meta.slang.h" coreLibraryCode = StringBlob::moveCreate(sb); } @@ -301,7 +301,7 @@ namespace Slang #if SLANG_EMBED_CORE_MODULE_SOURCE if (!hlslLibraryCode) { - const String path = getStdlibPath(); + const String path = getCoreModulePath(); StringBuilder sb; #include "hlsl.meta.slang.h" hlslLibraryCode = StringBlob::moveCreate(sb); @@ -315,7 +315,7 @@ namespace Slang #if SLANG_EMBED_CORE_MODULE_SOURCE if (!autodiffLibraryCode) { - const String path = getStdlibPath(); + const String path = getCoreModulePath(); StringBuilder sb; #include "diff.meta.slang.h" autodiffLibraryCode = StringBlob::moveCreate(sb); @@ -328,7 +328,7 @@ namespace Slang { if (!glslLibraryCode) { - const String path = getStdlibPath(); + const String path = getCoreModulePath(); StringBuilder sb; #include "glsl.meta.slang.h" glslLibraryCode = StringBlob::moveCreate(sb); -- cgit v1.2.3