diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-03-27 00:42:00 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-03-27 00:42:00 +0300 |
commit | 9452e1a39fe74b56b8667b088b9674358dcb52a2 (patch) | |
tree | 524b8467772c72c439e8340063193154bcd04948 /src/render | |
parent | 22e1d3794fb293a5336d66199fb7463aeea7faf9 (diff) | |
download | manaplus-9452e1a39fe74b56b8667b088b9674358dcb52a2.tar.gz manaplus-9452e1a39fe74b56b8667b088b9674358dcb52a2.tar.bz2 manaplus-9452e1a39fe74b56b8667b088b9674358dcb52a2.tar.xz manaplus-9452e1a39fe74b56b8667b088b9674358dcb52a2.zip |
Fix empty vector issue in modern and mobile2 opengl renderers.
Diffstat (limited to 'src/render')
-rw-r--r-- | src/render/mobileopengl2graphics.cpp | 2 | ||||
-rw-r--r-- | src/render/modernopenglgraphics.cpp | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/render/mobileopengl2graphics.cpp b/src/render/mobileopengl2graphics.cpp index 028dc3b28..36f6263d1 100644 --- a/src/render/mobileopengl2graphics.cpp +++ b/src/render/mobileopengl2graphics.cpp @@ -1301,6 +1301,8 @@ void MobileOpenGL2Graphics::finalize(ImageVertexes *restrict const vert) STD_VECTOR<GLuint>::const_iterator ivbo; const int sz = CAST_S32(floatTexPool.size()); + if (sz == 0) + return; vbos.resize(sz); mglGenBuffers(sz, &vbos[0]); diff --git a/src/render/modernopenglgraphics.cpp b/src/render/modernopenglgraphics.cpp index c792021ef..473b8d264 100644 --- a/src/render/modernopenglgraphics.cpp +++ b/src/render/modernopenglgraphics.cpp @@ -1304,6 +1304,8 @@ void ModernOpenGLGraphics::finalize(ImageVertexes *restrict const vert) STD_VECTOR<GLuint>::const_iterator ivbo; const int sz = CAST_S32(intTexPool.size()); + if (sz == 0) + return; vbos.resize(sz); mglGenBuffers(sz, &vbos[0]); /* |