summaryrefslogtreecommitdiff
path: root/include/mbgl/util/image.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/mbgl/util/image.hpp')
-rw-r--r--include/mbgl/util/image.hpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/mbgl/util/image.hpp b/include/mbgl/util/image.hpp
index fde42c7c5e..7927b777ea 100644
--- a/include/mbgl/util/image.hpp
+++ b/include/mbgl/util/image.hpp
@@ -21,6 +21,11 @@ public:
height(h),
data(std::make_unique<uint8_t[]>(size())) {}
+ Image(size_t w, size_t h, std::unique_ptr<uint8_t[]> data_)
+ : width(w),
+ height(h),
+ data(std::move(data_)) {}
+
size_t stride() const { return width * 4; }
size_t size() const { return width * height * 4; }