summaryrefslogtreecommitdiffstats
path: root/source/slang/slang-emit-slang.cpp
blob: 175f7ffc561c693bdf56e77c52c666a26a6378d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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