summaryrefslogtreecommitdiffstats
path: root/source/slang/slang-stdlib.h
blob: 65c70ecb56dd648d62e3a6f4462dd4e778d1a257 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef SHADER_COMPILER_STD_LIB_H
#define SHADER_COMPILER_STD_LIB_H

#include "../core/basic.h"

namespace Slang
{
    namespace Compiler
    {
        class SlangStdLib
        {
        private:
            static CoreLib::String code;
        public:
            static CoreLib::String GetCode();
            static void Finalize();
        };

        CoreLib::String getGLSLLibraryCode();
    }
}

#endif