From d6d8ac4cc3199ba82293b168ced403765325abd5 Mon Sep 17 00:00:00 2001 From: Lucas Wojciechowski Date: Wed, 29 Jun 2016 16:07:13 -0700 Subject: [PATCH] Increase sprite atlas size to 1024 x 1024 (#2802) fixes #2761 --- js/style/style.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/style/style.js b/js/style/style.js index 97422ad8b2b..77c6d96e310 100644 --- a/js/style/style.js +++ b/js/style/style.js @@ -22,7 +22,7 @@ module.exports = Style; function Style(stylesheet, animationLoop, workerCount) { this.animationLoop = animationLoop || new AnimationLoop(); this.dispatcher = new Dispatcher(workerCount || 1, this); - this.spriteAtlas = new SpriteAtlas(512, 512); + this.spriteAtlas = new SpriteAtlas(1024, 1024); this.lineAtlas = new LineAtlas(256, 512); this._layers = {};