diff options
author | Konstantin Käfer <mail@kkaefer.com> | 2015-08-14 17:59:56 +0300 |
---|---|---|
committer | Konstantin Käfer <mail@kkaefer.com> | 2015-08-19 18:21:12 -0400 |
commit | c53a9fd00d4c0584eaf6c20157f1599bda21acd8 (patch) | |
tree | c2456dad56c70720f5564ad048ee1786ac4743df /src | |
parent | bb0ae37c25b0fffaa324cc25bbec59001487eac9 (diff) | |
download | qtlocation-mapboxgl-c53a9fd00d4c0584eaf6c20157f1599bda21acd8.tar.gz |
fix debugging names on iOS
Diffstat (limited to 'src')
-rw-r--r-- | src/mbgl/gl/debugging.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mbgl/gl/debugging.cpp b/src/mbgl/gl/debugging.cpp index 31e4016dbc..0061127048 100644 --- a/src/mbgl/gl/debugging.cpp +++ b/src/mbgl/gl/debugging.cpp @@ -173,7 +173,7 @@ group::group(const std::string& str) { if (PushDebugGroup) { PushDebugGroup(GL_DEBUG_SOURCE_APPLICATION, 0, GLsizei(str.size()), str.c_str()); } else if (PushGroupMarkerEXT) { - PushGroupMarkerEXT(GLsizei(str.size()), str.c_str()); + PushGroupMarkerEXT(GLsizei(str.size() + 1), str.c_str()); } } |