yum-mirror/slang
Making it easier to work with shaders
git clone https://git.yummers.dev/yum-mirror/slang
f65d756bf
master
1#ifndef SLANG_DXC_COMPILER_UTIL_H 2#define SLANG_DXC_COMPILER_UTIL_H 3 4#include "../core/slang-platform.h" 5#include "slang-downstream-compiler-util.h" 6 7namespace Slang 8{ 9 10struct DXCDownstreamCompilerUtil 11{ 12static SlangResult locateCompilers ( 13const String & path , 14ISlangSharedLibraryLoader * loader , 15DownstreamCompilerSet * set ); 16}; 17 18}// namespace Slang 19 20#endif