summaryrefslogtreecommitdiff
path: root/src/mbgl/style/style.cpp
diff options
context:
space:
mode:
authorAnsis Brammanis <brammanis@gmail.com>2016-01-26 12:38:17 -0800
committerAnsis Brammanis <brammanis@gmail.com>2016-01-26 13:27:16 -0800
commit9dcaab193359f3de1a9d9750363cc547a2e69093 (patch)
treebc9e0229f7cd16ce79b5bb76b4af1cd34f188581 /src/mbgl/style/style.cpp
parenta3284ad7e212a8b17906d9218b4837bb485dd61f (diff)
downloadqtlocation-mapboxgl-9dcaab193359f3de1a9d9750363cc547a2e69093.tar.gz
[core] bump sprite atlas to 1024x1024
Diffstat (limited to 'src/mbgl/style/style.cpp')
-rw-r--r--src/mbgl/style/style.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mbgl/style/style.cpp b/src/mbgl/style/style.cpp
index ca18cd9247..18b0d7f3fd 100644
--- a/src/mbgl/style/style.cpp
+++ b/src/mbgl/style/style.cpp
@@ -35,7 +35,7 @@ Style::Style(MapData& data_)
glyphStore(std::make_unique<GlyphStore>()),
glyphAtlas(std::make_unique<GlyphAtlas>(1024, 1024)),
spriteStore(std::make_unique<SpriteStore>(data.pixelRatio)),
- spriteAtlas(std::make_unique<SpriteAtlas>(512, 512, data.pixelRatio, *spriteStore)),
+ spriteAtlas(std::make_unique<SpriteAtlas>(1024, 1024, data.pixelRatio, *spriteStore)),
lineAtlas(std::make_unique<LineAtlas>(512, 512)),
workers(4) {
glyphStore->setObserver(this);