summaryrefslogtreecommitdiffstats
path: root/source/compiler-core/slang-dxc-compiler.h
blob: ee1d93c48671e6fb6b18d33e35805c14b916819e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef SLANG_DXC_COMPILER_UTIL_H
#define SLANG_DXC_COMPILER_UTIL_H

#include "../core/slang-platform.h"
#include "slang-downstream-compiler-util.h"

namespace Slang
{

struct DXCDownstreamCompilerUtil
{
    static SlangResult locateCompilers(
        const String& path,
        ISlangSharedLibraryLoader* loader,
        DownstreamCompilerSet* set);
};

} // namespace Slang

#endif