yum-mirror/slang

Making it easier to work with shaders

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

Ellie Hermaszewskaformatf65d756bf

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