summaryrefslogtreecommitdiff
path: root/source/slang/slang-stdlib.h
blob: e4ee8cee3c1123079b74f0525305d901b34125f4 (plain)
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