yum-mirror/slang
Making it easier to work with shaders
git clone https://git.yummers.dev/yum-mirror/slang
f65d756bf
master
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{ 13static SlangResult locateCompilers ( 14const String & path , 15ISlangSharedLibraryLoader * loader , 16DownstreamCompilerSet * set ); 17}; 18 19}// namespace Slang 20 21#endif