summaryrefslogtreecommitdiffstats
path: root/source/slang-core-module
diff options
context:
space:
mode:
authorJay Kwak <82421531+jkwak-work@users.noreply.github.com>2024-10-28 16:40:53 -0700
committerGitHub <noreply@github.com>2024-10-28 16:40:53 -0700
commitb7a619b45b0745f166d2dcc5985b994fb1d85d13 (patch)
treea1fbae9702899bf574624641f31bf17d9dd54999 /source/slang-core-module
parent80471601720e107f0914479f6097281d0840cf18 (diff)
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.
Diffstat (limited to 'source/slang-core-module')
-rw-r--r--source/slang-core-module/slang-embedded-core-module-source.cpp8
1 files changed, 4 insertions, 4 deletions
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);