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