diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/mbgl/map/map.cpp | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/src/mbgl/map/map.cpp b/src/mbgl/map/map.cpp index e9d4d9e247..727fdf6d40 100644 --- a/src/mbgl/map/map.cpp +++ b/src/mbgl/map/map.cpp @@ -24,6 +24,7 @@ #include <mbgl/util/tile_coordinate.hpp> #include <mbgl/actor/scheduler.hpp> #include <mbgl/util/logging.hpp> +#include <mbgl/util/string.hpp> #include <mbgl/math/log2.hpp> namespace mbgl { @@ -314,10 +315,15 @@ void Map::Impl::render(View& view) { contextMode, debugOptions }; - painter->render(*style, - frameData, - view, - annotationManager->getSpriteAtlas()); + try { + painter->render(*style, + frameData, + view, + annotationManager->getSpriteAtlas()); + } catch (...) { + Log::Error(Event::General, "Exception in render: %s", util::toString(std::current_exception()).c_str()); + exit(1); + } auto request = std::move(stillImageRequest); request->callback(nullptr); |