diff options
author | chai <chaifix@163.com> | 2018-11-26 16:52:14 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2018-11-26 16:52:14 +0800 |
commit | 380daad668cd288d98970cdd76d920e3fbf6a374 (patch) | |
tree | 667ffc003e026da18e7c9b10fc3e32bd24e490e9 /src/libjin/graphics/je_renderable.h | |
parent | f49291959d22b9f05f0c19a31c3f9a8905805014 (diff) |
*lua bind
Diffstat (limited to 'src/libjin/graphics/je_renderable.h')
-rw-r--r-- | src/libjin/graphics/je_renderable.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libjin/graphics/je_renderable.h b/src/libjin/graphics/je_renderable.h index 0e29556..ca9888e 100644 --- a/src/libjin/graphics/je_renderable.h +++ b/src/libjin/graphics/je_renderable.h @@ -24,14 +24,14 @@ namespace JinEngine class Renderable { public: - void setShader(const Shaders::Shader* shader); + //void setShader(const Shaders::Shader* shader); virtual void render(float x, float y, float sx, float sy, float r) const {}; virtual void render(float x, float y, float sx, float sy, float r, float ox, float oy) const {}; virtual void render(float x, float y, float sx, float sy, float r, Origin origin) const {}; protected: - const Shaders::Shader* mShader; + //const Shaders::Shader* mShader; }; |