From 63e53de157e75e504a6bf1a678cebaea5acf72b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Konstantin=20K=C3=A4fer?= Date: Mon, 22 Aug 2016 17:57:22 +0200 Subject: [core] standardize on uint16_t for texture sizes --- include/mbgl/map/view.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/mbgl/map') diff --git a/include/mbgl/map/view.hpp b/include/mbgl/map/view.hpp index fa6f91d910..590eef7237 100644 --- a/include/mbgl/map/view.hpp +++ b/include/mbgl/map/view.hpp @@ -52,7 +52,7 @@ public: // Reads the pixel data from the current framebuffer. If your View implementation // doesn't support reading from the framebuffer, return a null pointer. - virtual PremultipliedImage readStillImage(); + virtual PremultipliedImage readStillImage(std::array size = {{ 0, 0 }}); // Notifies a watcher of map x/y/scale/rotation changes. virtual void notifyMapChange(MapChange change); -- cgit v1.2.1