summaryrefslogtreecommitdiffstats
path: root/source/slang/slang-emit-slang.h
blob: 964e1e52e986a72d44b0340348f582dc18384644 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef SLANG_EMIT_SLANG_H
#define SLANG_EMIT_SLANG_H

#include "slang-emit-base.h"
#include "slang-ir-link.h"
#include "slang-vm-bytecode.h"

namespace Slang
{
SlangResult emitSlangDeclarationsForEntryPoints(
    CodeGenContext* codeGenContext,
    LinkedIR& linkedIR,
    String& outSlangDeclaration);
}

#endif