summaryrefslogtreecommitdiffstats
path: root/source/slang/slang-stdlib.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/slang/slang-stdlib.cpp')
-rw-r--r--source/slang/slang-stdlib.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/source/slang/slang-stdlib.cpp b/source/slang/slang-stdlib.cpp
index 69ae36a3f..bd2ce2561 100644
--- a/source/slang/slang-stdlib.cpp
+++ b/source/slang/slang-stdlib.cpp
@@ -269,22 +269,4 @@ namespace Slang
hlslLibraryCode = sb.ProduceString();
return hlslLibraryCode;
}
-
-
- // GLSL-specific library code
-
- String Session::getGLSLLibraryCode()
- {
- if(glslLibraryCode.Length() != 0)
- return glslLibraryCode;
-
- String path = getStdlibPath();
-
- StringBuilder sb;
-
- #include "glsl.meta.slang.h"
-
- glslLibraryCode = sb.ProduceString();
- return glslLibraryCode;
- }
}