blob: b53046641c91196d09ae3fdb2bca69a1a8c170d7 (
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
|
#ifndef __JE_JSL_COMPILER_H
#define __JE_JSL_COMPILER_H
#include "../../common/je_singleton.hpp"
namespace JinEngine
{
namespace Graphics
{
///
/// Compile JSL into GLSL.
///
class JSLCompiler : public Singleton<JSLCompiler>
{
public:
private:
singleton(JSLCompiler);
};
}
}
#endif
|