blob: 48c6d4da681900a1c6529857a93c8eead57f0310 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef SLANG_NVRTC_COMPILER_UTIL_H
#define SLANG_NVRTC_COMPILER_UTIL_H
#include "slang-downstream-compiler.h"
#include "../core/slang-platform.h"
namespace Slang
{
struct NVRTCDownstreamCompilerUtil
{
static SlangResult locateCompilers(const String& path, ISlangSharedLibraryLoader* loader, DownstreamCompilerSet* set);
};
}
#endif
|