diff options
author | John Firebaugh <john.firebaugh@gmail.com> | 2017-05-30 13:58:59 -0700 |
---|---|---|
committer | John Firebaugh <john.firebaugh@gmail.com> | 2017-06-05 19:38:08 -0700 |
commit | 74af076d405a089fac70a47e41fe92d04d97fc50 (patch) | |
tree | 29e4a76538da9a9455f711a25e7d5ddc1dece625 /test | |
parent | 1cf46d93b944095726396acf84649519e2fd96ad (diff) | |
download | qtlocation-mapboxgl-74af076d405a089fac70a47e41fe92d04d97fc50.tar.gz |
[core] Split RenderStyle from Style
Diffstat (limited to 'test')
-rw-r--r-- | test/tile/annotation_tile.test.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/tile/annotation_tile.test.cpp b/test/tile/annotation_tile.test.cpp index bfd991c504..927799b26d 100644 --- a/test/tile/annotation_tile.test.cpp +++ b/test/tile/annotation_tile.test.cpp @@ -5,7 +5,7 @@ #include <mbgl/util/run_loop.hpp> #include <mbgl/map/transform.hpp> #include <mbgl/map/query.hpp> -#include <mbgl/style/style.hpp> +#include <mbgl/renderer/render_style.hpp> #include <mbgl/renderer/tile_parameters.hpp> #include <mbgl/map/query.hpp> #include <mbgl/text/collision_tile.hpp> @@ -26,7 +26,7 @@ public: util::RunLoop loop; ThreadPool threadPool { 1 }; AnnotationManager annotationManager; - style::Style style { threadPool, fileSource, 1.0 }; + RenderStyle style { threadPool, fileSource }; SpriteAtlas spriteAtlas; GlyphAtlas glyphAtlas { { 512, 512, }, fileSource }; |