diff options
Diffstat (limited to 'Runtime/Graphics/ShaderCompiler.h')
-rw-r--r-- | Runtime/Graphics/ShaderCompiler.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Runtime/Graphics/ShaderCompiler.h b/Runtime/Graphics/ShaderCompiler.h index 4e276c1..56ddb45 100644 --- a/Runtime/Graphics/ShaderCompiler.h +++ b/Runtime/Graphics/ShaderCompiler.h @@ -4,6 +4,7 @@ #include <string>
#include "Runtime/Threading/Mutex.h"
#include "Runtime/Threading/Job.h"
+#include "Runtime/Graphics/RenderCommands.h"
// ±ąŅėGLSL(GameLab Shading Language)
@@ -34,6 +35,6 @@ public: class GLSLCompiler
{
public:
- static void Compile(std::string& src, std::string& vsh, std::string& fsh)/*throw GLSLCompileException*/;
+ static void Compile(std::string& src, std::string& vsh, std::string& fsh, RenderCommandGroup& cmd)/*throw GLSLCompileException*/;
};
|