blob: d21b1e7f187c99c67a32a4edd17546285754db14 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef SHADER_COMPILER_STD_LIB_H
#define SHADER_COMPILER_STD_LIB_H
#include "../core/basic.h"
namespace Slang
{
String getCoreLibraryCode();
String getHLSLLibraryCode();
String getGLSLLibraryCode();
void finalizeShaderLibrary();
}
#endif
|