summaryrefslogtreecommitdiffstats
path: root/source/slang/slang-emit-slang.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/slang/slang-emit-slang.cpp')
-rw-r--r--source/slang/slang-emit-slang.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/source/slang/slang-emit-slang.cpp b/source/slang/slang-emit-slang.cpp
new file mode 100644
index 000000000..175f7ffc5
--- /dev/null
+++ b/source/slang/slang-emit-slang.cpp
@@ -0,0 +1,17 @@
+#include "slang-emit-slang.h"
+
+namespace Slang
+{
+
+SlangResult emitSlangDeclarationsForEntryPoints(
+ CodeGenContext* codeGenContext,
+ LinkedIR& linkedIR,
+ String& outSlangCode)
+{
+ SLANG_UNUSED(codeGenContext);
+ SLANG_UNUSED(linkedIR);
+ SLANG_UNUSED(outSlangCode);
+ return SLANG_OK;
+}
+
+} // namespace Slang