summaryrefslogtreecommitdiff
path: root/src/mbgl/style/image.cpp
blob: 3b35fa76f17e5b5bdf05658d73f3e3849dea4047 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#include <mbgl/style/image.hpp>
#include <mbgl/style/image_impl.hpp>
#include <mbgl/util/exception.hpp>

namespace mbgl {
namespace style {

Image::Image(std::string id,
             PremultipliedImage &&image,
             const float pixelRatio,
             bool sdf)
    : impl(makeMutable<Impl>(std::move(id), std::move(image), pixelRatio, sdf)) {
}

std::string Image::getID() const {
    return impl->id;
}

const PremultipliedImage& Image::getImage() const {
    return impl->image;
}

bool Image::isSdf() const {
    return impl->sdf;
}

float Image::getPixelRatio() const {
    return impl->pixelRatio;
}

float Image::getWidth() const {
    return impl->getWidth();
}

float Image::getHeight() const {
    return impl->getHeight();
}

} // namespace style
} // namespace mbgl