From 71c8f6aa10368084bc0a365b15f004d0629a8b67 Mon Sep 17 00:00:00 2001 From: John Firebaugh Date: Wed, 17 May 2017 18:19:48 -0700 Subject: [core] Move pattern coordinate division by texture size into shader This makes pattern usage more like icons, and will be necessary for data-driven *-pattern properties. --- src/mbgl/sprite/sprite_atlas.cpp | 8 +++----- src/mbgl/sprite/sprite_atlas.hpp | 2 +- 2 files changed, 4 insertions(+), 6 deletions(-) (limited to 'src/mbgl/sprite') diff --git a/src/mbgl/sprite/sprite_atlas.cpp b/src/mbgl/sprite/sprite_atlas.cpp index cc69bccdbe..bcf35050ab 100644 --- a/src/mbgl/sprite/sprite_atlas.cpp +++ b/src/mbgl/sprite/sprite_atlas.cpp @@ -18,7 +18,7 @@ static constexpr uint32_t padding = 1; SpriteAtlasElement::SpriteAtlasElement(Rect rect_, const style::Image::Impl& image, - Size size_, float pixelRatio) + float pixelRatio) : pos(std::move(rect_)), sdf(image.sdf), relativePixelRatio(image.pixelRatio / pixelRatio), @@ -28,8 +28,8 @@ SpriteAtlasElement::SpriteAtlasElement(Rect rect_, const float w = image.image.size.width / pixelRatio; const float h = image.image.size.height / pixelRatio; - tl = {{ float(pos.x + padding) / size_.width, float(pos.y + padding) / size_.height }}; - br = {{ float(pos.x + padding + w) / size_.width, float(pos.y + padding + h) / size_.height }}; + tl = {{ float(pos.x + padding), float(pos.y + padding) }}; + br = {{ float(pos.x + padding + w), float(pos.y + padding + h) }}; } SpriteAtlas::SpriteAtlas(Size size_, float pixelRatio_) @@ -142,7 +142,6 @@ optional SpriteAtlas::getImage(const std::string& id, return SpriteAtlasElement { *(entry.*entryRect), *entry.image, - size, pixelRatio }; } @@ -164,7 +163,6 @@ optional SpriteAtlas::getImage(const std::string& id, return SpriteAtlasElement { rect, *entry.image, - size, pixelRatio }; } diff --git a/src/mbgl/sprite/sprite_atlas.hpp b/src/mbgl/sprite/sprite_atlas.hpp index 832922df5a..52749d389b 100644 --- a/src/mbgl/sprite/sprite_atlas.hpp +++ b/src/mbgl/sprite/sprite_atlas.hpp @@ -20,7 +20,7 @@ class Context; class SpriteAtlasElement { public: - SpriteAtlasElement(Rect, const style::Image::Impl&, Size size, float pixelRatio); + SpriteAtlasElement(Rect, const style::Image::Impl&, float pixelRatio); Rect pos; bool sdf; -- cgit v1.2.1