yum-mirror/slang
Making it easier to work with shaders
git clone https://git.yummers.dev/yum-mirror/slang
063468449
master
1#ifndef SLANG_GLSLANG_COMPILER_UTIL_H 2#define SLANG_GLSLANG_COMPILER_UTIL_H 3 4#include "../core/slang-platform.h" 5#include "slang-downstream-compiler-util.h" 6 7namespace Slang 8{ 9 10struct GlslangDownstreamCompilerUtil 11{ 12static SlangResult locateCompilers ( 13const String & path , 14ISlangSharedLibraryLoader * loader , 15DownstreamCompilerSet * set ); 16}; 17 18 19struct SpirvOptDownstreamCompilerUtil 20{ 21static SlangResult locateCompilers ( 22const String & path , 23ISlangSharedLibraryLoader * loader , 24DownstreamCompilerSet * set ); 25}; 26 27struct SpirvDisDownstreamCompilerUtil 28{ 29static SlangResult locateCompilers ( 30const String & path , 31ISlangSharedLibraryLoader * loader , 32DownstreamCompilerSet * set ); 33}; 34 35struct SpirvLinkDownstreamCompilerUtil 36{ 37static SlangResult locateCompilers ( 38const String & path , 39ISlangSharedLibraryLoader * loader , 40DownstreamCompilerSet * set ); 41}; 42 43}// namespace Slang 44 45#endif