summaryrefslogtreecommitdiff
path: root/include/mbgl/style/image.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/mbgl/style/image.hpp')
-rw-r--r--include/mbgl/style/image.hpp31
1 files changed, 31 insertions, 0 deletions
diff --git a/include/mbgl/style/image.hpp b/include/mbgl/style/image.hpp
new file mode 100644
index 0000000000..ff3bfedf46
--- /dev/null
+++ b/include/mbgl/style/image.hpp
@@ -0,0 +1,31 @@
+#pragma once
+
+#include <mbgl/util/image.hpp>
+#include <mbgl/util/immutable.hpp>
+
+#include <string>
+
+namespace mbgl {
+namespace style {
+
+class Image {
+public:
+ Image(std::string id, PremultipliedImage&&, float pixelRatio, bool sdf = false);
+ Image(const Image&);
+
+ std::string getID() const;
+
+ const PremultipliedImage& getImage() const;
+
+ // Pixel ratio of the sprite image.
+ float getPixelRatio() const;
+
+ // Whether this image should be interpreted as a signed distance field icon.
+ bool isSdf() const;
+
+ class Impl;
+ Immutable<Impl> baseImpl;
+};
+
+} // namespace style
+} // namespace mbgl