blob: 1817a7b0225915ed771292bb5f98fa318941e623 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#ifndef __JE_JSL_COMPILER_H
#define __JE_JSL_COMPILER_H
#include "../../core/je_configuration.h"
#if defined(jin_graphics) && (jin_graphics & jin_graphics_shader)
#include "../../common/je_singleton.hpp"
namespace JinEngine
{
namespace Graphics
{
///
/// Compile JSL into GLSL.
///
class JSLCompiler : public Singleton<JSLCompiler>
{
public:
private:
singleton(JSLCompiler);
};
} // namespace Graphics
} // namespace JinEngine
#endif // (jin_graphics) && (jin_graphics & jin_graphics_shader)
#endif // __JE_JSL_COMPILER_H
|