blob: 74953c3783950a6e5754fd441c4c2f2b939a44db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#pragma once
#include "../core/slang-platform.h"
#include "slang-downstream-compiler-util.h"
namespace Slang
{
struct TintDownstreamCompilerUtil
{
static SlangResult locateCompilers(
const String& path,
ISlangSharedLibraryLoader* loader,
DownstreamCompilerSet* set);
};
} // namespace Slang
|