diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/render/mobileopengl2graphics.cpp | 6 | ||||
-rw-r--r-- | src/render/modernopenglgraphics.cpp | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/src/render/mobileopengl2graphics.cpp b/src/render/mobileopengl2graphics.cpp index 6c0762934..620bc923a 100644 --- a/src/render/mobileopengl2graphics.cpp +++ b/src/render/mobileopengl2graphics.cpp @@ -198,6 +198,11 @@ void MobileOpenGL2Graphics::postInit() restrict2 mglUniform2f(mTextureSizeUniform, 1.0f, 1.0f); + mglUniform4f(mSimpleColorUniform, + 0.0F, + 0.0F, + 0.0F, + 0.0F); mglActiveTexture(GL_TEXTURE0); } @@ -207,6 +212,7 @@ void MobileOpenGL2Graphics::screenResized() restrict2 deleteGLObjects(); mVboBinded = 0U; mAttributesBinded = 0U; + mColor = Color(0, 0, 0, 0); postInit(); } diff --git a/src/render/modernopenglgraphics.cpp b/src/render/modernopenglgraphics.cpp index cfd83e57f..89ca10fd4 100644 --- a/src/render/modernopenglgraphics.cpp +++ b/src/render/modernopenglgraphics.cpp @@ -200,6 +200,11 @@ void ModernOpenGLGraphics::postInit() restrict2 mglUniform2f(mScreenUniform, static_cast<float>(mWidth) / 2.0f, static_cast<float>(mHeight) / 2.0f); + mglUniform4f(mSimpleColorUniform, + 0.0F, + 0.0F, + 0.0F, + 0.0F); } void ModernOpenGLGraphics::screenResized() restrict2 @@ -208,6 +213,7 @@ void ModernOpenGLGraphics::screenResized() restrict2 mVboBinded = 0U; mEboBinded = 0U; mAttributesBinded = 0U; + mColor = Color(0, 0, 0, 0); postInit(); } |