aboutsummaryrefslogtreecommitdiff
path: root/src/libjin/Graphics/Shader/je_jsl_compiler.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libjin/Graphics/Shader/je_jsl_compiler.h')
-rw-r--r--src/libjin/Graphics/Shader/je_jsl_compiler.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/libjin/Graphics/Shader/je_jsl_compiler.h b/src/libjin/Graphics/Shader/je_jsl_compiler.h
new file mode 100644
index 0000000..b530466
--- /dev/null
+++ b/src/libjin/Graphics/Shader/je_jsl_compiler.h
@@ -0,0 +1,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 \ No newline at end of file