yum-mirror/slang

Making it easier to work with shaders

git clone https://git.yummers.dev/yum-mirror/slang

Ellie Hermaszewskaformatf65d756bf

master
388 B20 linesraw
1#ifndef SLANG_LLVM_COMPILER_UTIL_H
2#define SLANG_LLVM_COMPILER_UTIL_H
3
4#include "../core/slang-platform.h"
5#include "slang-downstream-compiler-util.h"
6
7namespace Slang
8{
9
10struct LLVMDownstreamCompilerUtil
11{
12    static SlangResult locateCompilers(
13        const String& path,
14        ISlangSharedLibraryLoader* loader,
15        DownstreamCompilerSet* set);
16};
17
18} // namespace Slang
19
20#endif