1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#ifndef SHADER_COMPILER_STD_LIB_H #define SHADER_COMPILER_STD_LIB_H #include "../core/basic.h" namespace Slang { class SlangStdLib { private: static String code; public: static String GetCode(); static void Finalize(); }; String getGLSLLibraryCode(); } #endif