blob: d56ad7114e81dba162b574b7ac4e8107fb94e506 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
#ifndef SLANG_GLSLANG_COMPILER_UTIL_H
#define SLANG_GLSLANG_COMPILER_UTIL_H
#include "../core/slang-platform.h"
#include "slang-downstream-compiler-util.h"
namespace Slang
{
struct GlslangDownstreamCompilerUtil
{
static SlangResult locateCompilers(
const String& path,
ISlangSharedLibraryLoader* loader,
DownstreamCompilerSet* set);
};
struct SpirvOptDownstreamCompilerUtil
{
static SlangResult locateCompilers(
const String& path,
ISlangSharedLibraryLoader* loader,
DownstreamCompilerSet* set);
};
struct SpirvDisDownstreamCompilerUtil
{
static SlangResult locateCompilers(
const String& path,
ISlangSharedLibraryLoader* loader,
DownstreamCompilerSet* set);
};
struct SpirvLinkDownstreamCompilerUtil
{
static SlangResult locateCompilers(
const String& path,
ISlangSharedLibraryLoader* loader,
DownstreamCompilerSet* set);
};
} // namespace Slang
#endif
|