diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-06-08 18:38:07 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-06-08 18:38:07 +0300 |
commit | 7a0ce777e5d7e3c5ba562ea1c811c0c3cb17a976 (patch) | |
tree | 04528345be1561b7970b4c1f1c6e1693e5e2f84e /src/render/modernopenglgraphics.h | |
parent | e7f05704102d204ce73f97bca5f62312adcd1c2b (diff) | |
download | plus-7a0ce777e5d7e3c5ba562ea1c811c0c3cb17a976.tar.gz plus-7a0ce777e5d7e3c5ba562ea1c811c0c3cb17a976.tar.bz2 plus-7a0ce777e5d7e3c5ba562ea1c811c0c3cb17a976.tar.xz plus-7a0ce777e5d7e3c5ba562ea1c811c0c3cb17a976.zip |
Add simple shader creation.
Diffstat (limited to 'src/render/modernopenglgraphics.h')
-rw-r--r-- | src/render/modernopenglgraphics.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/render/modernopenglgraphics.h b/src/render/modernopenglgraphics.h index 09edcbd92..75165031f 100644 --- a/src/render/modernopenglgraphics.h +++ b/src/render/modernopenglgraphics.h @@ -46,6 +46,7 @@ #include <set> class NormalOpenGLGraphicsVertexes; +class ShaderProgram; class ModernOpenGLGraphics final : public Graphics { @@ -56,6 +57,8 @@ class ModernOpenGLGraphics final : public Graphics ~ModernOpenGLGraphics(); + void postInit() override final; + #include "render/graphicsdef.hpp" #include "render/openglgraphicsdef.hpp" @@ -67,6 +70,7 @@ class ModernOpenGLGraphics final : public Graphics GLshort *mShortVertArray; GLfloat *mFloatTexArrayCached; GLshort *mShortVertArrayCached; + ShaderProgram *mSimpleProgram; float mAlphaCached; int mVpCached; bool mTexture; |